1config BR2_PACKAGE_MEMCACHED 2 bool "memcached" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on BR2_USE_MMU # fork() 5 select BR2_PACKAGE_LIBEVENT 6 help 7 Memcached is an in-memory key-value store for small chunks 8 of arbitrary data (strings, objects) from results of 9 database calls, API calls, or page rendering. 10 11 http://www.memcached.org/ 12 13comment "memcached needs a toolchain w/ threads" 14 depends on !BR2_TOOLCHAIN_HAS_THREADS 15 depends on BR2_USE_MMU 16