Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redis _changes feed?

Tags:

redis

couchdb

In Redis is there a feature roughly equivalent to the _changes feed feature in CouchDB?

like image 561
Martin Murphy Avatar asked Mar 08 '26 21:03

Martin Murphy


1 Answers

You could probably build similar functionality using Redis's PUBSUB features. Of course this is more work, but it may be worth looking into.

The redis documentation on pubsub:

http://redis.io/topics/pubsub

like image 144
xer0x Avatar answered Mar 11 '26 10:03

xer0x