summaryrefslogtreecommitdiff
path: root/tests/assets
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-01-02 21:39:17 +0100
committerantirez <antirez@gmail.com>2011-01-02 21:39:17 +0100
commit4942145d722559698416483c6f31ead9909884be (patch)
tree77110369e6f23197ffb681b809c48fbb27c898a4 /tests/assets
parente37efb0d8bb12172990f6c688230bc7515aa6524 (diff)
downloadredis-4942145d722559698416483c6f31ead9909884be.tar.gz
fixed a bug in diskstore
Diffstat (limited to 'tests/assets')
-rw-r--r--tests/assets/default.conf60
1 files changed, 4 insertions, 56 deletions
diff --git a/tests/assets/default.conf b/tests/assets/default.conf
index 15d70ffbd..8113e157c 100644
--- a/tests/assets/default.conf
+++ b/tests/assets/default.conf
@@ -206,62 +206,10 @@ appendfsync everysec
# To enable VM just set 'vm-enabled' to yes, and set the following three
# VM parameters accordingly to your needs.
-vm-enabled no
-# vm-enabled yes
-
-# This is the path of the Redis swap file. As you can guess, swap files
-# can't be shared by different Redis instances, so make sure to use a swap
-# file for every redis process you are running. Redis will complain if the
-# swap file is already in use.
-#
-# The best kind of storage for the Redis swap file (that's accessed at random)
-# is a Solid State Disk (SSD).
-#
-# *** WARNING *** if you are using a shared hosting the default of putting
-# the swap file under /tmp is not secure. Create a dir with access granted
-# only to Redis user and configure Redis to create the swap file there.
-vm-swap-file redis.swap
-
-# vm-max-memory configures the VM to use at max the specified amount of
-# RAM. Everything that deos not fit will be swapped on disk *if* possible, that
-# is, if there is still enough contiguous space in the swap file.
-#
-# With vm-max-memory 0 the system will swap everything it can. Not a good
-# default, just specify the max amount of RAM you can in bytes, but it's
-# better to leave some margin. For instance specify an amount of RAM
-# that's more or less between 60 and 80% of your free RAM.
-vm-max-memory 0
-
-# Redis swap files is split into pages. An object can be saved using multiple
-# contiguous pages, but pages can't be shared between different objects.
-# So if your page is too big, small objects swapped out on disk will waste
-# a lot of space. If you page is too small, there is less space in the swap
-# file (assuming you configured the same number of total swap file pages).
-#
-# If you use a lot of small objects, use a page size of 64 or 32 bytes.
-# If you use a lot of big objects, use a bigger page size.
-# If unsure, use the default :)
-vm-page-size 32
-
-# Number of total memory pages in the swap file.
-# Given that the page table (a bitmap of free/used pages) is taken in memory,
-# every 8 pages on disk will consume 1 byte of RAM.
-#
-# The total swap size is vm-page-size * vm-pages
-#
-# 32M swap should be enough for testing.
-vm-pages 1048576
-
-# Max number of VM I/O threads running at the same time.
-# This threads are used to read/write data from/to swap file, since they
-# also encode and decode objects from disk to memory or the reverse, a bigger
-# number of threads can help with big objects even if they can't help with
-# I/O itself as the physical device may not be able to couple with many
-# reads/writes operations at the same time.
-#
-# The special value of 0 turn off threaded I/O and enables the blocking
-# Virtual Memory implementation.
-vm-max-threads 4
+diskstore-enabled yes
+diskstore-path redis.ds
+cache-max-memory 0
+cache-flush-delay 0
############################### ADVANCED CONFIG ###############################