≡ Menu

Redis

Redis is an in-memory key-value pair database. Redis is extremely fast, as the operation happens in the memory. Redis also provides on-disk persistence and built-in replication. In Redis, you can use these data structures: 1) String 2) Hash 3) List 4) Set 5) Sorted Set. There is no integer or float data type in Redis. [...]

{ 3 comments }

How to Use Redis with PHP using PhpRedis with Examples

Redis is an open source, in-memory advanced key-value store. It is one of the fastest NoSQL database. Moreover, Redis cache store is a more advanced data-structure than memcached service. For using Redis cache, we will have to pick a client. There are many PHP clients listed on its official website out of which phpredis is [...]

{ 8 comments }