2013-03-11 16:47:11 +01:00
|
|
|
config BR2_PACKAGE_REDIS
|
|
|
|
bool "redis"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2015-01-21 13:21:42 +01:00
|
|
|
depends on BR2_INET_IPV6
|
2013-03-11 16:47:11 +01:00
|
|
|
help
|
|
|
|
Redis is an open source, advanced key-value store. It is
|
|
|
|
often referred to as a data structure server since keys can
|
|
|
|
contain strings, hashes, lists, sets and sorted sets.
|
|
|
|
|
|
|
|
http://www.redis.io
|
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "redis needs a toolchain w/ IPv6, threads"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2015-03-30 23:07:30 +02:00
|
|
|
depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
|