I'm developing a web application that requires a lot of users to be in the same "universe", where a lot of frequent queries will happen:
- frequent lookups of clients that are in a certain box area (between X1, X2, Y1 and Y2)
- frequent position updates by clients
- frequent chat messages by clients
- frequent status updates by clients
- frequent connections and disconnections of new and old clients
I believe my nodes can have enough memory for all currently online users to be in RAM. This is why I originally considered Redis. However, I decided Redis is not applicable here because:
- it has a single point of failure (one master server)
- only the master server can write, if one has 40 nodes then 39 slaves would have to make the one master write each and every entry
Cassandra seems to solve these issues.
However, is Cassandra also suitable for my frequent queries?