国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

win10 Redis的安裝使用及配置

張利勇 / 1069人閱讀

摘要:原文地址下載安裝版是上的一個開源項目我們可以直接下載解壓使用。通過快捷方式啟動服務修改的默認配置設置的最大占用內存設置最大占用內存,打開配置文件,找到如下段落,設置參數,是字節類型,注意轉換。是近期最少使用算法。

原文地址

下載安裝

Redis--Window版是GitHub上的一個開源項目我們可以直接下載解壓使用。
Download Now

在D盤下新建Redis文件(這個路徑可以自定義),將Redis解壓至該文件

安裝完后 打開 win控制臺 cd 進入 Redis 目錄
運行:redis-server.exe redis.windows.conf
如果出現以下信息則說明安裝成功。

配置

配置之前先關掉Redis服務

添加啟動Redis的快捷方式

為redis-server.exe創建快捷方式redis(名字 自定義)

修改redis的屬性,為redis的目標屬性,加入并指定讀取的配置文件redis.windows.conf,前面要加空格。

通過快捷方式redis啟動Redis服務

修改Redis的默認配置 設置Redis的最大占用內存

Redis設置最大占用內存,打開redis配置文件,找到如下段落,設置maxmemory參數,maxmemory是bytes字節類型,注意轉換。修改如下所示:

# NOTE: since Redis uses the system paging file to allocate the heap memory,
# the Working Set memory usage showed by the Windows Task Manager or by other
# tools such as ProcessExplorer will not always be accurate. For example, right
# after a background save of the RDB or the AOF files, the working set value
# may drop significantly. In order to check the correct amount of memory used
# by the redis-server to store the data, use the INFO client command. The INFO
# command shows only the memory used to store the redis data, not the extra
# memory used by the Windows process for its own requirements. Th3 extra amount
# of memory not reported by the INFO command can be calculated subtracting the
# Peak Working Set reported by the Windows Task Manager and the used_memory_peak
# reported by the INFO command.
#
# maxmemory   根據自己需求配置
maxmemory 2147483648    

如果不設置maxmemory或者設置為0,64位系統不限制內存,32位系統最多使用3GB內存。

修改數據默認存放位置

這里自定義一個文件夾,用來存放Redis數據

# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the "dbfilename" configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir D:MyRedisSwap
設置LRU算法刪除數據

設置了maxmemory的選項,redis內存使用達到上限。可以通過設置LRU算法來刪除部分key,釋放空間。默認是按照過期時間的,如果set時候沒有加上過期時間就會導致數據寫滿maxmemory。

LRU是Least Recently Used 近期最少使用算法。

volatile-lru -> 根據LRU算法生成的過期時間來刪除。

-allkeys-lru -> 根據LRU算法刪除任何key。

volatile-random -> 根據過期設置來隨機刪除key。

allkeys->random -> 無差別隨機刪。

volatile-ttl -> 根據最近過期時間來刪除(輔以TTL)

noeviction -> 誰也不刪,直接在寫操作時返回錯誤。

如果設置了maxmemory,一般都要設置過期策略。Redis默認有六種過期策略

# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
# is reached. You can select among five behaviors:
#
# volatile-lru -> remove the key with an expire set using an LRU algorithm
# allkeys-lru -> remove any key according to the LRU algorithm
# volatile-random -> remove a random key with an expire set
# allkeys-random -> remove a random key, any key
# volatile-ttl -> remove the key with the nearest expire time (minor TTL)
# noeviction -> don"t expire at all, just return an error on write operations
#
# Note: with any of the above policies, Redis will return an error on write
#       operations, when there are no suitable keys for eviction.
#
#       At the date of writing these commands are: set setnx setex append
#       incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
#       sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
#       zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
#       getset mset msetnx exec sort
#
# The default is:
#
# maxmemory-policy noeviction
maxmemory-policy volatile-lru

以下是其他配置:

Redis默認不是以守護進程的方式運行,可以通過該配置項修改,使用yes啟用守護進程 (在Windows上不支持守護進程)

daemonize no 

指定Redis監聽端口,默認端口為6379
(在Windows上不支持守護進程)

 port 6379

綁定的主機地址

bind 127.0.0.1

指定在多長時間內,有多少次更新操作,就將數據同步到數據文件,可以多個條件配合

save  

Redis默認配置文件中提供了三個條件:

save 900 1
save 300 10
save 60 10000

分別表示900秒(15分鐘)內有1個更改,300秒(5分鐘)內有10個更改以及60秒內有10000個更改。

指定更新日志文件名,默認為appendonly.aof

appendfilename appendonly.aof

指定更新日志條件,共有3個可選值:

no:表示等操作系統進行數據緩存同步到磁盤(快) 
always:表示每次更新操作后手動調用fsync()將數據寫到磁盤(慢,安全) 
everysec:表示每秒同步一次(折衷,默認值)

appendfsync everysec

指定在超過一定的數量或者最大的元素超過某一臨界值時,采用一種特殊的哈希算法

hash-max-zipmap-entries 64
hash-max-zipmap-value 512

參考鏈接:

Redis中文網

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/69248.html

相關文章

  • win10安裝javaee開發環境(jdk+tomcat+mysql+redis+activemq

    摘要:第步配置環境變量在中使用即可,不用寫第步輸入進入中,輸入檢驗是否安裝成功。安裝服務啟動服務停止服務切換到目錄下運行參考安裝解壓,配置環境變量,下開啟和關閉窗口方式啟動安裝服務啟動協助服務命令校驗是否啟動輸入參考 1.安裝jdk 第1步:在官網下載和自己電腦位數相同的安裝包 第2步:選擇安裝路徑,默認在C盤,建議自定義選擇其他盤符,避免c盤重裝系統后,需要重新安裝。 第3步:安裝過程中...

    alaege 評論0 收藏0
  • SimfaseDevEnv一個Vagrant構建開發環境

    摘要:整體與很像,但是做了一些更改,為了更適應中國國內的開發網絡環境。表示宿主機器的目錄,表示環境目錄。將虛擬機置于休眠狀態。在開發過程中可能會需要增加多個站點來運行不同的開發程序。與擴展名重名,建議將的改成為佳。 SimfaseDevEnv 介紹 SimfaseDevEnv是為php開發者提供的開發環境,構建在vagrant之上;Vagrant的Vagrangfile配置文件是在Homes...

    Noodles 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<