|
|
|
|
|
by MalcolmDiggs
3696 days ago
|
|
I believe you're describing what is typically referred to as an "append only" datastore. The biggest-name in the game is Google BigQuery. From their docs: "BigQuery tables are append-only. The query language does not currently support either updating or deleting data. In order to update or delete data, you must delete the table, then recreate the table with new data. Alternatively, you could write a query that modifies the data and specify a new results table." There are others databases, like Datomic, which are less popular. Typical use-cases are usually log-storage, so search around for databases meant for logging, and I'm sure you'll find a lot more. |
|