SSDB: A fast on-disk NoSQL database that uses the Redis protocol
1–9 of 9 posts
Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#2Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#3Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#4What are its advantages over Redis, besides a slight increase in speed?
Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#5What are its advantages over Redis, besides a slight increase in speed?
Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#6Looks great judging from the docs, anyone using this? Care to share any experience?
Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#7Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#8What are its advantages over Redis, besides a slight increase in speed?
The major advantage (depending on your use case) is that your dataset is not limited to the size of your available memory.
Redis tried this (see http://redis.io/topics/virtual-memory) but it died a quick and well-deserved death (the code isn't even in it anymore as of 2.6).
Re: SSDB: A fast on-disk NoSQL database that uses the Redis protocol
#9Earlier quoted context omitted.
The major advantage (depending on your use case) is that your dataset is not limited to the size of your available memory.
Does it manage its own cache like InnoDB? Otherwise you're gonna have a bad time. Redis tried this (see http://redis.io/topics/virtual-memory ) but it died a quick and well-deserved death (the code isn't even in it anymore as of 2.6).
leveldb:
# in MB
cache_size: 500
# in KB
block_size: 32
# in MB
write_buffer_size: 64
# in MB
compaction_speed: 1000
# yes|no
compression: no