Indexing the MySQL Document Store
Indexing and the MySQL Document Store The MySQL Document Store allows developers who do not know Structured Query Language (SQL) to use MySQL as a high efficient NoSQL document store. It has several great features but databases, NoSQL and SQL, have a problem searching through data efficiently. To help searching, you can add an index on certain fields to go directly to certain records. Traditional databases, like MySQL, allow you to add indexes and NoSQL databases, for example MongoDB, lets you add indexes. The MySQL Document Store also allows indexing. So lets take a quick look at some simple data and then create an index. mysql-js> db.foo.find() [ { "Name": "Carrie", "_id": "888881f14651e711940d0800276cdda9", "age": 21 }, { "Name": "Alex", "_id": "cc8a81f14651e711940d0800276cdda9", "age": 24 }, { "La...