本文整理匯總了C#中ServiceStack.Redis.RedisClient.Store方法的典型用法代碼示例。如果您正苦於以下問題:C# RedisClient.Store方法的具體用法?C# RedisClient.Store怎麽用?C# RedisClient.Store使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ServiceStack.Redis.RedisClient
的用法示例。
在下文中一共展示了RedisClient.Store方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
public static void Main()
{
try
{
var path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var file = Path.Combine(Path.Combine(path, "cmd"), "redis-server.exe");
if (File.Exists(file))
{
var redis = new ProcessStartInfo()
{
FileName = file
};
using (var server = Process.Start(redis))
{
if (server.Responding)
{
using (var client = new RedisClient())
{
client.FlushAll();
CatalogInitializer.Configure();
// Create
"[CREATE] StoreAll".ToConsoleInfo();
client.StoreAll<Book>(CatalogInitializer.Seed());
// Read
"[READ] GetAll".ToConsoleInfo();
var catalog = client.GetAll<Book>().ToList();
catalog.ForEach(retrieved => retrieved.ToJson<Book>().ToConsole());
var isbn = "9780596800956";
string.Format("[READ] GetById (Isbn = {0})", isbn).ToConsoleInfo();
client.GetById<Book>(isbn).ToJson<Book>().ToConsole();
// Update
"[UPDATE] (InStock = false)".ToConsoleInfo();
var book = client.GetById<Book>(isbn);
book.InStock = false;
client.Store<Book>(book);
client.GetById<Book>(isbn).ToJson<Book>().ToConsole();
// Delete
string.Format("[DELETE] DeleteById (Isbn = {0})", isbn).ToConsoleInfo();
client.DeleteById<Book>(isbn);
client.GetById<Book>(isbn).ToJson<Book>().ToConsole();
}
}
}
}
}
catch (Exception exception)
{
exception.ToString().ToConsole();
}
finally
{
"Press any key to continue . . .".ToConsole();
Console.ReadKey(true);
}
}