NanoStore 1.0
© Webbo, L.L.C., 2010. All rights reserved.
September 21, 2010

Today, Webbo is pleased to announce the release of NanoStore:

http://sourceforge.net/projects/nanostore/

NanoStore is a Cocoa wrapper for SQLite, a C library that implements an 
embeddable SQL database engine.

With NanoStore, you store data using a dictionary of any depth. The developer 
can decide what to store on the fly, unlike other systems that require the 
developer to design a schema. With NanoStore just build your dictionary and 
store it. That's all there is to it! Every data element in the dictionary is 
indexed (except BLOBs) so there's no need to keep a list of indexed separately. 
You can disable indexing, import your data in batch mode, save it and then 
reindex at once, which is quite efficient. For even better performance, all I/O 
can be performed in memory and save the new database to disk at once, which is 
even faster. And if you feel adventurous, you can even do that in Fast mode and 
save extra SQLite processing.

All these variations come with pros and cons, sure... but you have a choice. 
You can decide what's best *for you* and map a strategy to *your* model as 
there accessors available for most SQLite settings and pragmas that will allow 
you to tune it to your liking.

The list of classes include:

NSFNanoStore
NSFNanoExpression
NSFNanoSearch
NSFNanoResult

You also have full access to the sqlite3* handle, in case you need it (hey... 
you're a developer right?)

In addition, the NanoStore project includes:

- Unit tests
- An iOS plain-vanilla app to demonstrate how easy it is to embed NanoStore in 
your project

Enjoy!

-- Tito

*********************
Tito Ciuro
R&D Group, Webbo, L.L.C.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to