Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Knio committed Jan 16, 2015
1 parent a79150c commit aa2242c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
everdb
========
======

everdb is an embedded database system. It operates
*everdb* is an embedded database system. It operates
as a programming library with APIs to read, write, and access data structures contained in a single database file.

[![Build Status](https://travis-ci.org/Knio/everdb.svg?branch=v3)](https://travis-ci.org/Knio/everdb)
[![Coverage Status](https://img.shields.io/coveralls/Knio/everdb.svg)](https://coveralls.io/r/Knio/everdb?branch=v3)
[![Build Status](https://travis-ci.org/Knio/everdb.svg)](https://travis-ci.org/Knio/everdb)
[![Coverage Status](https://img.shields.io/coveralls/Knio/everdb.svg)](https://coveralls.io/r/Knio/everdb)

Karchive is:
*everdb* is:
* Embedded (your application opens the databae file directly)
* Single-user (only one process can open the file at a time)
* ACID complient (supports transactions and guarantees data reliability)
* Efficient (datastructures are fast, all operations do not need to load
large structures into memory, optimized for 4K RAM/disk sizes, etc)


Karchive is NOT:
*everdb* is not:
* Client-server (you do not connect to a database server)
* SQL (or NoSQL) (you operate on the database structures directly though a programming API, not by writing queries in SQL or JS)

Expand All @@ -36,7 +36,7 @@ TODO
Datastructures
==============

karachive supports three data structures: Blobs, Arrays, and Hashes.
everdb supports three data structures: Blobs, Arrays, and Hashes.


Blobs
Expand Down

0 comments on commit aa2242c

Please sign in to comment.