當前位置: 首頁>>代碼示例>>C#>>正文


C# RedisClient.StoreAll方法代碼示例

本文整理匯總了C#中ServiceStack.Redis.RedisClient.StoreAll方法的典型用法代碼示例。如果您正苦於以下問題:C# RedisClient.StoreAll方法的具體用法?C# RedisClient.StoreAll怎麽用?C# RedisClient.StoreAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ServiceStack.Redis.RedisClient的用法示例。


在下文中一共展示了RedisClient.StoreAll方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: GetAutorByName

        public async Task<Autor> GetAutorByName(string name)
        {
            if (!_collection.Any())
            {
                var compartimossService = new CompartiService();
                _collection = await compartimossService.SearchAuthors();
                using (var redisClient = new RedisClient("dockerdotnetencamina.westus.cloudapp.azure.com", 6379))
                {
                    redisClient.StoreAll(_collection);
                }
            }
            return _collection.Where(x => x.Name.Equals(name)).FirstOrDefault();

        }
開發者ID:AdrianDiaz81,項目名稱:DotNetSpain2016,代碼行數:14,代碼來源:AutorService.cs

示例2: GetAllAutor

        public async Task<IEnumerable<Autor>> GetAllAutor()
        {
            if (!_collection.Any())
            {
                var compartimossService = new CompartiService();
                _collection = await compartimossService.SearchAuthors();
                using (var redisClient = new RedisClient("dockerdotnetencamina.westus.cloudapp.azure.com", 6379))
                {
                    redisClient.StoreAll(_collection);
                }
            }

            return _collection;


        }
開發者ID:AdrianDiaz81,項目名稱:DotNetSpain2016,代碼行數:16,代碼來源:AutorService.cs

示例3: Import

        public ActionResult Import()
        {
            var importService = new ImportService();
            IEnumerable<Article> list = new List<Article>();
            //var redisUrl = ConfigurationManager.AppSettings.Get("REDISTOGO_URL");
            var connectionUri = "ec2-54-247-0-119.eu-west-1.compute.amazonaws.com";//new Uri("redis://redistogo-appharbor:[email protected]:9371/");
            using (var redisClient = new RedisClient(connectionUri, 6379))
            {
                if(redisClient.As<Article>().GetAll().Count != 0)
                    redisClient.As<Article>().DeleteAll();

                var importedArticles = importService.ImportArticlesAsync(redisClient);
                redisClient.StoreAll(importedArticles);
                list = redisClient.GetAll<Article>();
            }
            return View(list.Take(1));
            //return View("Gizmos", await importService.ImportArticlesAsync());
        }
開發者ID:andnil,項目名稱:forfun,代碼行數:18,代碼來源:HomeController.cs

示例4: 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);
            }
        }
開發者ID:nanotaboada,項目名稱:dotnet,代碼行數:62,代碼來源:Program.cs


注:本文中的ServiceStack.Redis.RedisClient.StoreAll方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。