Redis入門學習

來源:互聯網
上載者:User

標籤:

Redis安裝

$ wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz
$ tar xzf redis-2.6.13.tar.gz
$ cd redis-2.6.13
$ make

Redis啟動

$ src/redis-server


Redis 簡單測試:

$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"

複雜測試:

./runtest (註:要先安裝tcl 8.5 tk 8.5, sudo apt-get install tk )

此命令會運行一個官方的測試程式。看最後的結論:全部測試成功通過。

 

這樣就可以讓用戶端串連上來了。

用戶端軟體有很多, 在這個串連裡有列表: http://redis.io/clients

對c#最熟悉,就選了一個c# client, ServiceStack.Redis  這個可以在Nuget介面裡找到。找到後加入項目。

using ServiceStack.Redis;using System.Diagnostics;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            Stopwatch sw = new Stopwatch();            sw.Start();            using (var client = new RedisClient("192.168.63.134"))            {                for (int i = 0; i < 100000; i++)                {                    client.Add("key" + i, i);                }            }            sw.Stop();            System.Console.WriteLine("It takes " + sw.ElapsedMilliseconds + "ms to add 100000 key to Redis");            sw.Restart();            using (var client = new RedisClient("192.168.63.134"))            {                for (int i = 0; i < 100000; i++)                {                    client.Get("key" + i);                }            }            sw.Stop();            System.Console.WriteLine("It takes " + sw.ElapsedMilliseconds + "ms to get 100000 key from Redis");            System.Console.ReadKey();        }    }}

  

本人的機器運行出結果:大概14秒來儲存100000個key, 大概14秒取出100000個key.

 

文章來源:Redis入門學習

Redis入門學習

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.