Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
301 views
in Technique[技术] by (71.8m points)

Send redis message with html/javascript

I'm trying to find a way to send a redis message to a specific channel from a website. I think this might work, but I don't know how to use it and there is very little explanation.

question from:https://stackoverflow.com/questions/65848291/send-redis-message-with-html-javascript

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Redis is supposed to only connect with a server, not directly with a client such as a browser (it's actually impossible to directly connect to redis from a browser).

You can achieve that running webdis on the server with redis and connecting to it from the browser, resulting in an infrastructure similar to this:

Client       Server
----------------------
         |
         |
Browser ---> webdis
         |     |
         |     |
         |     v
         |   redis

Note that it would not be secure, because the client on the browser could do whatever he wants with your redis database.

Usually, a custom server program is implemented that forward your commands to the redis server in a controlled way:

Client       Server
----------------------
         |
         |
Browser ---> custom server
         |        |
         |        |
         |        v
         |      redis

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...