I am looking for this feature to be able to write to Cassandra through Ignite layer on top similar to how Cassandra supports "with" timestamp feature, so that stale updates can be eliminated. The reason we want to write through Ignite is because we may get a read call immediately after writing and the API needs to serve the latest and not wait for TTL or LRU on Ignite Cache. On the other hand, we could write to Cassandra directly and then invalidate/remove the entry to ensure latest data is served. But there could be a better way?