Which, if any, of the NoSQL databases can provide stream of changes to a query result set?
Could anyone point me at some examples?
Firstly, I believe that none of the SQL databases provide this functionality - am I correct?
I need to be able to specify arbitrary, simple queries, whose equivalent in SQL might be written:
SELECT * FROM accounts WHERE balance < 0 and balance > -1000;
I want an an initial result set:
id: 100, name: Fred, balance: -10
id: 103, name: Mary, balance: -200
but then I want a stream of changes to follow, forever, until I stop them:
meta: remove, id: 100
meta: add, id: 104, name: Alice, balance: -300
meta: remove, id: 103
meta: modify, id: 104, name: Alice, balance: -400
meta: modify, id: 104, name: Alison, balance: -400
meta: add, id: 101, name: Clive, balance: -200
meta: modify, id: 104, name: Alison, balance: -100
...
Note: I'm not talking about streaming large result sets. I'm looking for a soft-realtime stream of changes.
Also, it needs to scale out, if possible.
Thanks,
Chris.