Você tem o Redis para armazenar estruturas de dados e obtê-las após a reinicialização, pois o serviço salva o cache ao ser desativado.
O Redis não usa proc, roda no nível do usuário e você fala com ele por padrão em 6379 / TCP.
Existem também APIs / extensões para alguns idiomas, incluindo python e PHP.
Você também pode fazer alguns diagnósticos e enviar alguns comandos por telnet para ele / wget
/ curl
.
Pode ser protegido por senha.
para instalá-lo no Debian
sudo apt-get install redis-server
.
Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs and geospatial indexes with radius queries. Redis has built-in replication, Lua scripting, LRU eviction, transactions and different levels of on-disk persistence...
Deste Guia rápido do Redis
Redis is an open source, advanced key-value store and an apt solution for building highperformance, scalable web applications.
Redis has three main peculiarities that sets it apart.
Redis holds its database entirely in the memory, using the disk only for persistence.
Redis has a relatively rich set of data types when compared to many key-value data stores.
Redis can replicate data to any number of slaves.