Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Plain text files in a filesystem</p> <ul> <li>Very simple to create and edit</li> <li>Easy for users to manipulate with simple tools (i.e. text editors, grep etc)</li> <li>Efficient storage of binary documents</li> </ul> <hr> <p>XML or JSON files on disk</p> <ul> <li>As above, but with a bit more ability to validate the structure.</li> </ul> <hr> <p>Spreadsheet / CSV file</p> <ul> <li>Very easy model for business users to understand</li> </ul> <hr> <p>Subversion (or similar disk based version control system)</p> <ul> <li>Very good support for versioning of data</li> </ul> <hr> <p><a href="http://www.oracle.com/technology/products/berkeley-db/index.html" rel="noreferrer">Berkeley DB</a> (Basically, a disk based hashtable)</p> <ul> <li>Very simple conceptually (just un-typed key/value)</li> <li>Quite fast</li> <li>No administration overhead</li> <li>Supports transactions I believe</li> </ul> <hr> <p><a href="http://www.amazon.com/SimpleDB-AWS-Service-Pricing/b/ref=sc_fe_l_2?ie=UTF8&amp;node=342335011&amp;no=3435361&amp;me=A36L942TSJ2AJA" rel="noreferrer">Amazon's Simple DB</a></p> <ul> <li>Much like Berkeley DB I believe, but hosted</li> </ul> <hr> <p><a href="http://code.google.com/appengine/docs/datastore/" rel="noreferrer">Google's App Engine Datastore</a></p> <ul> <li>Hosted and highly scalable</li> <li>Per document key-value storage (i.e. flexible data model)</li> </ul> <hr> <p><a href="http://incubator.apache.org/couchdb/" rel="noreferrer">CouchDB</a></p> <ul> <li>Document focus</li> <li>Simple storage of semi-structured / document based data</li> </ul> <hr> <p>Native language collections (stored in memory or serialised on disk)</p> <ul> <li>Very tight language integration</li> </ul> <hr> <p>Custom (hand-written) storage engine</p> <ul> <li>Potentially very high performance in required uses cases</li> </ul> <hr> <p>I can't claim to know anything much about them, but you might also like to look into <a href="http://en.wikipedia.org/wiki/Object_database" rel="noreferrer">object database systems</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload