Reputation: 35732
The Datomic database has the concept of 'Database as a Value'. This means that you can get a reference to the database at a point in time - and query against it.
It appears that BiTemporal Indexes in Cassandra do almost the same thing.
My question is: What's different about Database as a Value in Datomic vs BiTemporal Indexes in Cassandra?
Upvotes: 4
Views: 469
Reputation: 46
The two concepts are very similar, in that they allow you to query the database at a specific point in time. There are a few points that separate them though:
"Database as a Value" extends beyond point-in-time query. For example:
Upvotes: 3