1
0
Fork 0
a mirror from github
Go to file
Frank Celler 5d7a401c6f added install-data-local 2012-02-08 14:30:21 +01:00
Admin fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
ApplicationServer more documentation, separate modules.js for server 2012-02-07 18:08:45 +01:00
Basics towards 0.1.0 2012-01-26 17:25:01 +01:00
BasicsC typo 2012-02-08 13:41:26 +01:00
Dispatcher cleanup 2012-01-03 19:00:49 +01:00
Doxygen doc 2012-02-08 10:25:39 +01:00
GeneralServer fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
GeoIndex mac os x fixes 2012-02-03 11:03:53 +01:00
HttpServer cleanup 2012-01-04 09:28:21 +01:00
HttpsServer cleanup 2012-01-04 09:29:04 +01:00
JsonParser cleanup 2012-01-03 12:24:15 +01:00
JsonParserX paths and flex check 2012-01-04 16:48:32 +01:00
Logger cleanup 2012-01-04 09:31:52 +01:00
ProgramOptions cleanup 2012-01-03 12:24:33 +01:00
QL fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
Rest using logger 2012-02-08 12:53:38 +01:00
RestHandler wrap shaped, more documentation 2012-02-03 17:01:33 +01:00
RestServer using logger 2012-02-08 12:53:38 +01:00
ResultGenerator cleanup 2012-01-04 09:38:12 +01:00
Scheduler fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
ShapedJson old autoconf check, fixed warnings 2012-01-11 16:34:23 +01:00
UnitTests reorganisation of directory tree structure 2012-01-04 09:47:33 +01:00
V8 doc 2012-02-08 10:43:42 +01:00
Variant cleanup 2012-01-03 12:26:58 +01:00
VocBase fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
config added install-data-local 2012-02-08 14:30:21 +01:00
html/admin new interface 2012-02-03 11:32:47 +01:00
js doc 2012-02-08 10:43:42 +01:00
m4 fixed logging restart, added more logging, cleanup 2012-02-07 15:01:30 +01:00
.gitignore merge 2012-02-03 11:40:44 +01:00
GNUmakefile reorganisation of directory tree structure 2012-01-04 09:47:33 +01:00
Makefile.am added install-data-local 2012-02-08 14:30:21 +01:00
Makefile.files doc 2012-02-08 10:43:42 +01:00
README.md doc 2012-02-08 13:04:23 +01:00
build.h added install-data-local 2012-02-08 14:30:21 +01:00
configure.ac towards 0.1.0 2012-01-26 17:25:01 +01:00

README.md

AvocadoDB

My colleagues and I started developing a document-store, which focuses on durability of the data taking advantage of new technologies like SSD, support for graph and geo algorithms needed in social networks, ease of use for the developer and minimal effort to operate for the administrator.

Compilation

  1. Install Dependencies: V8, boost, libev
  2. make setup
  3. ./configure --with-boost=PATH_TO_BOOST --with-libev=PATH_TO_LIBEV --with-v8=PATH_TO_V8
  4. make
  5. create a directory /var/lib/avocado where you are allowed to read and write
  6. "./avocado /var/lib/avocado" to start a REST server or "./avocado /var/lib/avocado --shell" for debugging

Mac OS X Hints

If you install AvocadoDB on Mac OS X we collected some hints for you:

  • The version of bison delivered with OS X is out of date. Update it before installing.
  • Due to the oddities of the boost library, at least the homebrew version requires some modification: In /usr/local/Cellar/boost/1.48.0/lib sym-link the regex, system and programm-option libraries to a name without -mt

First Steps

./avocado --shell
avocado> db.examples.count();
avocado> db.examples.save({ Hallo: "World" });
avocado> db.examples.select();