# Install using Homebrewbrew install XD-DENG/rediseen/rediseen
# Configurationexport REDISEEN_REDIS_URI="redis://:@localhost:6379"export REDISEEN_DB_EXPOSED=0export REDISEEN_KEY_PATTERN_EXPOSED="^key:([0-9a-z]+)"
# Start the servicerediseen start--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to redis-db+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/redis-db/33c7ef4b-1368-47d8-9410-9ada372c92f1%40googlegroups.com.
Itamar Haber ![]() |
Hello XD,Looks very nice and appears to be similar to webdis (https://webd.is) in terms of basic functionality. You should consider adding it to the page at https://redis.io/clients by making a PR to the tools.json file in the redis-doc repository.Cheers,
On Thu, Oct 24, 2019 at 8:30 PM Deng Xiaodong <xd....@gmail.com> wrote:
Hi folks,--Recently I started working on a side project, aiming for helping create REST-like API for Redis databases without writing any code. For example, you have logical DB 0 and keys key:* inside, then you may expect to have an API service to which people can submit HTTP calls like "http://localhost/0/key:1" then get the value.Finally I have done a working tool, Rediseen (https://github.com/XD-DENG/rediseen) for this aim.# Install using Homebrewbrew install XD-DENG/rediseen/rediseen# Configurationexport REDISEEN_REDIS_URI="redis://:@localhost:6379"export REDISEEN_DB_EXPOSED=0export REDISEEN_KEY_PATTERN_EXPOSED="^key:([0-9a-z]+)"# Start the servicerediseen startNow you are good to go to try something like "http://localhost:8000/0/key:1".It supports specifying what logical DB to expose, as well as what keys to expose, so you have control on what people can see from your Redis DB.Please have a try and share your feedbacks. Thanks in advance!XD
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to redi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/redis-db/33c7ef4b-1368-47d8-9410-9ada372c92f1%40googlegroups.com.
docker run \
-e REDISEEN_REDIS_URI="redis://:@192.168.1.107:6379" \
-e REDISEEN_DB_EXPOSED=0 \
-e REDISEEN_KEY_PATTERN_EXPOSED="^key:([0-9a-z]+)" \
-p 8000:8000 \
xddeng/rediseen:latest--
You received this message because you are subscribed to a topic in the Google Groups "Redis DB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/redis-db/9D6v7XBxC5k/unsubscribe.
To unsubscribe from this group and all its topics, send an email to redis-db+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/redis-db/d1f57fed-3122-4916-943a-80cfbb82b97a%40googlegroups.com.