Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin equivalent to MySQL for Redis?

Tags:

php

redis

I use Predis to operate Redis. It will be a lot helpful if i have a tool like PhpMyAdmin, Which is very useful when developing apps backed on MySQL.

What is the phpMyAdmin equivalent to MySQL for Redis?

Update: Finally, I find phpRedisAdmin. It is very convinient if you want a straight view of your whole data set. Its github link: https://github.com/ErikDubbelboer/phpRedisAdmin

like image 703
cainanyang Avatar asked Dec 06 '11 02:12

cainanyang


People also ask

Can I use Redis with MySQL?

Redis Enterprise can be used alongside your MySQL database to store your application's most critical and commonly-accessed data in-memory to deliver it with sub-millisecond speed.

What is Redis cache in PHP?

Redis cache is one of the best ways to make your site load faster. By following the PHP Redis example above, you connect Redis cache with PHP easily. If you need to know more about the Predis PHP API, then you can visit this page.

How is Redis different from MySQL?

Redis also does not support Triggers, while MySQL allows Triggers. While MySQL supports the XML data format, Redis does not. When concerning indexes, both allow them. However, MySQL supports secondary indexes without any restrictions while Redis only supports secondary indexes with the RediSearch module.

Why we use Redis in PHP?

Redis is an open source, in-memory, key-value data store most commonly used as a primary database, cache, message broker, and queue. Redis cache delivers sub-millisecond response times, enabling fast and powerful real-time applications in industries such as gaming, fintech, ad-tech, social media, healthcare, and IoT.


3 Answers

I'm using redis-cli, but i'm sure you want something more.

You could try :

  1. https://github.com/tnm/redweb
  2. http://code.google.com/p/redis-admin/
like image 104
malletjo Avatar answered Oct 17 '22 06:10

malletjo


from Redis web site there three web Interface for Redis:

  • redom

  • phpRedisAdmin

  • phpredmin

like image 32
ahmed hamdy Avatar answered Oct 17 '22 08:10

ahmed hamdy


I recently wrote a new web panel for redis in php. You can find it under redis.io/clients and also on it's github page: https://github.com/sasanrose/phpredmin

like image 4
Sasan Rose Avatar answered Oct 17 '22 06:10

Sasan Rose