windows下redis的安装

windows下redis的安装文件,从下面地址下载

http://code.google.com/p/servicestack/wiki/RedisWindowsDownload#Download_32bit_Cygwin_builds_for_Windows

下载最新的版本

 
解压到指定的目录,比如E:/根目录下
在解压包下面有几个文件
redis-server.exe:服务程序
redis-check-dum p.exe:本地数据库检查
redis-check-aof.exe:更新日志检查
redis-benchmark.exe:性能测试,用以模拟同时由N个客户端发送M个 SETs/GETs 查询 (类似于 A pache 的ab 工具).

在解压好redis的安装文件到E:\根目录后,还需要在redis根目录增加一个redis的配置文件redis.conf,文件具体内容如下:
  1. # Redis configuration file example   
  2.   
  3. # By default Redis does not run as a daemon. Use 'yes' if you need it.   
  4. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.   
  5. daemonize no   
  6.   
  7. # When run as a daemon, Redis write a pid file in /var/run/redis.pid by default.   
  8. # You can specify a custom pid file location here.   
  9. pidfile /var/run/redis.pid   
  10.   
  11. # Accept connections on the specified port, default is 6379  
  12. port 6379  
  13.   
  14. # If you want you can bind a single interfaceif the bind option is not   
  15. # specified all the interfaces will listen for connections.   
  16. #   
  17. # bind 127.0.0.1  
  18. bind 202.117.16.133
  19.   
  20. # Close the connection after a client is idle for N seconds (0 to disable)   
  21. timeout 300  
  22.   
  23. # Set server verbosity to 'debug'  
  24. # it can be one of:   
  25. # debug (a lot of information, useful for development/testing)   
  26. # notice (moderately verbose, what you want in production probably)   
  27. # warning (only very important / critical messages are logged)   
  28. loglevel debug   
  29.   
  30. # Specify the log file name. Also 'stdout' can be used to force   
  31. # the demon to log on the standard output. Note that if you use standard   
  32. # output for logging but daemonize, logs will be sent to /dev/null  
  33. logfile stdout   
  34.   
  35. # Set the number of databases. The default database is DB 0, you can select   
  36. # a different one on a per-connection basis using SELECT <dbid> where   
  37. # dbid is a number between 0 and 'databases'-1  
  38. databases 16  
  39.   
  40. ################################ SNAPSHOTTING  #################################   
  41. #   
  42. # Save the DB on disk:   
  43. #   
  44. #   save <seconds> <changes>   
  45. #   
  46. #   Will save the DB if both the given number of seconds and the given   
  47. #   number of write operations against the DB occurred.   
  48. #   
  49. #   In the example below the behaviour will be to save:   
  50. #   after 900 sec (15 min) if at least 1 key changed   
  51. #   after 300 sec (5 min) if at least 10 keys changed   
  52. #   after 60 sec if at least 10000 keys changed   
  53. save 900 1  
  54. save 300 10  
  55. save 60 10000  
  56.   
  57. # Compress string objects using LZF when dump .rdb databases?   
  58. # For default that's set to 'yes' as it's almost always a win.   
  59. # If you want to save some CPU in the saving child set it to 'no' but   
  60. # the dataset will likely be bigger if you have compressible values or keys.   
  61. rdbcompression yes   
  62.   
  63. # The filename where to dump the DB   
  64. dbfilename dump.rdb   
  65.   
  66. # For default save/load DB in/from the working directory   
  67. # Note that you must specify a directory not a file name.   
  68. dir ./   
  69.   
  70. ################################# REPLICATION #################################   
  71.   
  72. # Master-Slave replication. Use slaveof to make a Redis instance a copy of   
  73. # another Redis server. Note that the configuration is local to the slave   
  74. # so for example it is possible to configure the slave to save the DB with a   
  75. # different interval, or to listen to another port, and so on.   
  76. #   
  77. # slaveof <masterip> <masterport>   
  78.   
  79. # If the master is password protected (using the "requirepass" configuration   
  80. # directive below) it is possible to tell the slave to authenticate before   
  81. # starting the replication synchronization process, otherwise the master will   
  82. # refuse the slave request.   
  83. #   
  84. # masterauth <master-password>   
  85.   
  86. ################################## SECURITY ###################################   
  87.   
  88. # Require clients to issue AUTH <PASSWORD> before processing any other   
  89. # commands.  This might be useful in environments in which you do not trust   
  90. # others with access to the host running redis-server.   
  91. #   
  92. # This should stay commented out for backward compatibility and because most   
  93. # people do not need auth (e.g. they run their own servers).   
  94. #   
  95. # requirepass foobared   
  96.   
  97. ################################### LIMITS ####################################   
  98.   
  99. # Set the max number of connected clients at the same time. By default there   
  100. # is no limit, and it's up to the number of file descriptors the Redis process   
  101. # is able to open. The special value '0' means no limts.   
  102. # Once the limit is reached Redis will close all the new connections sending   
  103. # an error 'max number of clients reached'.   
  104. #   
  105. # maxclients 128  
  106.   
  107. # Don't use more memory than the specified amount of bytes.   
  108. # When the memory limit is reached Redis will try to remove keys with an   
  109. # EXPIRE set. It will try to start freeing keys that are going to expire   
  110. # in little time and preserve keys with a longer time to live.   
  111. # Redis will also try to remove objects from free lists if possible.   
  112. #   
  113. # If all this fails, Redis will start to reply with errors to commands   
  114. # that will use more memory, like SET, LPUSH, and so on, and will continue  
  115. # to reply to most read-only commands like GET.   
  116. #   
  117. # WARNING: maxmemory can be a good idea mainly if you want to use Redis as a   
  118. 'state' server or cache, not as a real DB. When Redis is used as a real   
  119. # database the memory usage will grow over the weeks, it will be obvious if  
  120. # it is going to use too much memory in the long run, and you'll have the time   
  121. # to upgrade. With maxmemory after the limit is reached you'll start to get   
  122. # errors for write operations, and this may even lead to DB inconsistency.   
  123. #   
  124. # maxmemory <bytes>   
  125.   
  126. ############################## APPEND ONLY MODE ###############################   
  127.   
  128. # By default Redis asynchronously dumps the dataset on disk. If you can live   
  129. # with the idea that the latest records will be lost if something like a crash   
  130. # happens this is the preferred way to run Redis. If instead you care a lot   
  131. # about your data and don't want to that a single record can get lost you should   
  132. # enable the append only mode: when this mode is enabled Redis will append   
  133. # every write operation received in the file appendonly.log. This file will   
  134. # be read on startup in order to rebuild the full dataset in memory.   
  135. #   
  136. # Note that you can have both the async dumps and the append only file if you   
  137. # like (you have to comment the "save" statements above to disable the dumps).   
  138. # Still if append only mode is enabled Redis will load the data from the   
  139. # log file at startup ignoring the dump.rdb file.   
  140. #   
  141. # The name of the append only file is "appendonly.log"  
  142. #   
  143. # IMPORTANT: Check the BGREWRITEAOF to check how to rewrite the append   
  144. # log file in background when it gets too big.   
  145.   
  146. appendonly no   
  147.   
  148. # The fsync() call tells the Operating System to actually write data on disk   
  149. # instead to wait for more data in the output buffer. Some OS will really flush   
  150. # data on disk, some other OS will just try to do it ASAP.   
  151. #   
  152. # Redis supports three different modes:   
  153. #   
  154. # no: don't fsync, just let the OS flush the data when it wants. Faster.   
  155. # always: fsync after every write to the append only log . Slow, Safest.   
  156. # everysec: fsync only if one second passed since the last fsync. Compromise.   
  157. #   
  158. # The default is "always" that's the safer of the options. It's up to you to   
  159. # understand if you can relax this to "everysec" that will fsync every second   
  160. # or to "no" that will let the operating system flush the output buffer when   
  161. # it want, for better performances (but if you can live with the idea of   
  162. # some data loss consider the default persistence mode that's snapshotting).   
  163.   
  164. appendfsync always   
  165. # appendfsync everysec   
  166. # appendfsync no   
  167.   
  168. ############################### ADVANCED CONFIG ###############################   
  169.   
  170. # Glue small output buffers together in order to send small replies in a   
  171. # single TCP packet. Uses a bit more CPU but most of the times it is a win   
  172. # in terms of number of queries per second. Use 'yes' if unsure.   
  173. glueoutputbuf yes   
  174.   
  175. # Use object sharing. Can save a lot of memory if you have many common   
  176. # string in your dataset, but performs lookups against the shared objects   
  177. # pool so it uses more CPU and can be a bit slower. Usually it's a good   
  178. # idea.   
  179. #   
  180. # When object sharing is enabled (shareobjects yes) you can use   
  181. # shareobjectspoolsize to control the size of the pool used in order to try  
  182. # object sharing. A bigger pool size will lead to better sharing capabilities.   
  183. # In general you want this value to be at least the double of the number of   
  184. # very common strings you have in your dataset.   
  185. #   
  186. # WARNING: object sharing is experimental, don't enable this feature   
  187. # in production before of Redis 1.0-stable. Still please try this feature in   
  188. # your development environment so that we can test it better.   
  189. # shareobjects no   
  190. # shareobjectspoolsize 1024  

启动redis:
输入命令:redis-server.exe redis.conf
设置客户端:
输入命令:redis-cli.exe -h IP -p 端口
性能测试:

输入命令:redis-benchmark.exe -h IP-p 端口 -n 请求数 -c 客户连接数

 

完毕!!

你可能感兴趣的:(windows下redis的安装)