I’ve recently discovered that redis has a property graph model implementation called redis graph and it’s amazing.
One thing that I really miss for my use-case though, is the ability to "watch" the data. In typical redis data structures I can enable Keyspace notifications or client tracking and be notified on the data mutations I’m interested in, pull data from the server or mark my local cache as "dirty".
I don’t know how that would work for a property graph since relations are much more complex (and the key feature for that matter), but is there a way to watch or synchronize with data stored in redis graph?
2
Answers
No. Unfortunately, currently, there is no way to trigger a keyspace notification whenever nodes or relationships are created, removed, or updated.
We plan to add such functionality in the future, but there is no specific date we can share right now.
Keyspace notifications can be enabled for modules like this:
The ‘A’ part includes modules—if the module publishes anything. Unfortunately, I tried this with RedisGraph, and it doesn’t.
You can reproduce my test below. In one terminal I launched redis-cli and did this:
In another I did this:
The first terminal returned nothing in response to this.