1. Redis web admin UI
Redis-admin:
The only redis admin ui written in php found till now. But lake of testing, personally not run it successful.
Ref url: http://code.google.com/p/redis-admin/ PHP
RedisAdminUI:
This project based on C# and ajax, so you should run under Windows server, or install mono under Linux.
But you can simply put XSP under the project directory to setup it.
Ref url: http://www.servicestack.net/mythz_blog/?p=381 .net + XSP
Online Example: http://www.servicestack.net/RedisAdminUI/AjaxClient/#
Redweb:
Web interface of Redis written in Python.
Ref url: https://github.com/kennyshen/redweb
RedisCover:
Web interface of Redis written in Ruby.
2. Advantage of Redis
Get Unique IDs just one query:
INCR <object>
Atomic Opertion:
MULTI
…
EXEC
Multiple Databases:
SELECT 3
The default database will be 0.
Pub/Sub Asynchronous message
SUBSCRIBE room:a
PUBLISH room “message”
UNSUBSCRIBE room
Simple FIFO Queue
LPUSH queue1 a
…
RPOP queue1



