15 ms·
Doesn't bypassing the SQL parser kind of make this a NOSQL solution?
by meursault 16y ago
Doesn't bypassing the SQL parser kind of make this a NOSQL solution?
- seunosewa 16y agoIt's also a NoACID solution.
- jerf 16y agoIt says you still get the ACID from InnoDB in the article; I have no way to independently verify that, but since people are talking about the speed gains coming from bypassing the SQL parser it would make sense that InnoDB still sees the same basic queries and therefore has the same properties it usually does. InnoDB, despite its association with MySQL, does have ACID and transactions and stuff.
- aidenn0 16y agoI'd want to verify that claim, since it is also avoiding mutex contention.
- morgo 16y agoEach modification is going to be atomic, but you don't have transactions. It still has durability against partially written writes via InnoDB's double write buffer - so it's more ACID than most NoSQL solutions.