top | item 2025620

(no title)

meursault | 15 years ago

Doesn't bypassing the SQL parser kind of make this a NOSQL solution?

discuss

order

seunosewa|15 years ago

It's also a NoACID solution.

jerf|15 years ago

It 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.

morgo|15 years ago

Each 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.