(no title)
lateforwork | 7 days ago
Oracle and SQL Server also default to read committed, not serializable. Serializable looks good in text books but is rarely used in practice.
lateforwork | 7 days ago
Oracle and SQL Server also default to read committed, not serializable. Serializable looks good in text books but is rarely used in practice.
mike_hearn|5 days ago
The best implementation of serializable transactions I've seen is in FoundationDB but it comes with serious costs. Transactions are limited in size and duration to a point where many normal database operations are disallowed by the system and require app-layer workarounds (at which point, of course, you lose serializability). And in many cases you do need cluster locks for other purposes anyway.
zadikian|4 days ago
zadikian|7 days ago