我在某种程度上是红宝石的初学者,我知道如果你想要缓存列表或对象或类似的东西,我知道红色很容易,但我不知道我怎么能把我的网页存储在红色?请注意,我使用servicestack作为redis客户端,为了使用服务堆栈将数据保存到redis,我使用以下代码:
IRedisClient redisClient = new RedisClient();
var rc = redisClient.As<person>();
rc.Store(new person()
{
Id = 1,
Name =
我有两个在不同情况下调用的Web方法。我使用了SetString方法,并在方法1中设置了该值,但在其他情况下调用第二个方法时,使用GetString方法访问该值时,该值将返回为null。
public string Method1(string args)
{
HttpContext.Session.SetString("key", "value"); // value is set in this method.
}
public string Method2(string args)
{
string value = HttpContext.S