Redis Admin ui--A Redis UI management interface
The management UI for Redis is made up of two parts:
1.AN AJAX Client Web application (based on Google's closed library developed by: https://github.com/google/closure-library), it acts as a simple static HTML/JS/CSS application that can be easily modified And is detached from the server components and hosted on any static HTTP file server.
2. A server servicestack http://www.servicestack.net/ ASP. NET Web service
All Redis operations of the application provide soap,xml and JSON endpoints.
It is cross-platform, though as it is. NET writing requires mono to run on Linux: Http://www.mono-project.com/ASP.NET.
The admin UI is customized to make it easy to modify and access any available Redis Web service operations: Http://redisadminui.servicestack.net/redis/metadata.
a full-featured JavaScript redisclient.js (http://redisadminui.servicestack.net/AjaxClient/js/RedisClient.js Libraries provide the most convenient way to access these services from a Web page.
Demonstrate:
http://redisadminui.servicestack.net/AjaxClient/
Source:
Https://github.com/ServiceStackApps/RedisAdminUI
Some other servicestack-based apps show:
Https://github.com/ServiceStackApps/LiveDemos
Servicestack Classic Example:
Https://github.com/ServiceStack/ServiceStack.Examples
How to create your first Servicestack program and some community resources:
Https://github.com/ServiceStack/ServiceStack/wiki/Create-your-first-webservice
Redis Admin ui--A Redis UI management interface