6 ms·
Couldn't you do it with transaction isolation levels? for example in Postgres "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ;" Inside the transaction you w
by aspirin 10y ago
Couldn't you do it with transaction isolation levels? for example in Postgres "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ;"
Inside the transaction you will see only changes made within the transaction.
- scribu 10y agoYes, but you would need to keep a transaction open for each user session. I think the stateless nature of time-travelling queries would map much better to the stateless nature of HTTP requests.