Y
Hacker News
new
|
ask
|
show
|
jobs
by
SahAssar
167 days ago
How do you deal with deletion requirements in a immutable database? Like how do you delete personal data when requested?
3 comments
radarroark
166 days ago
The fastest approach is to just zero out the data. Alternatively you can rebuild the entire database while preserving only the data accessible in the latest copy of the db (kinda similar to SQLite's VACUUM command).
link
malloryerik
166 days ago
In the case of Datomic:
https://docs.datomic.com/operation/excision.html
link
mwarkentin
167 days ago
Crypto shredding?
link