1
0
Fork 0
a mirror from github
Go to file
Frank Celler 4736f32fd7 js 2011-12-08 13:17:56 +01:00
Admin added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
ApplicationServer added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
Basics added CommonJS/modules 2011-12-08 13:04:09 +01:00
Dispatcher added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
GeneralServer added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
GeoIndex Version 2.0 from Richard Parker 2011-12-05 15:24:22 +01:00
HttpServer added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
JsonParser initial release 2011-10-26 21:32:36 +02:00
JsonParserX added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
ProgramOptions added more documentation, minor changes in startup 2011-12-05 13:14:57 +01:00
Rest added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
RestHandler added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
RestServer js 2011-12-08 13:17:56 +01:00
ResultGenerator added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
Scheduler added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
SessionManager added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
ShapedJson added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
UnitTests Version 2.0 from Richard Parker 2011-12-05 15:24:22 +01:00
UserManager added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
V8 added CommonJS/modules 2011-12-08 13:04:09 +01:00
VocBase added more documentation, minor changes in startup 2011-12-05 13:11:29 +01:00
config initial release 2011-10-26 21:32:36 +02:00
html/admin added admin 2011-12-02 11:03:41 +01:00
js added CommonJS/modules 2011-12-08 13:04:09 +01:00
m4 added more documentation, minor changes in startup 2011-12-05 13:18:03 +01:00
.gitignore exec 2011-12-05 15:16:05 +01:00
GNUmakefile initial release 2011-10-26 21:32:36 +02:00
Makefile.am added CommonJS/modules 2011-12-08 13:04:09 +01:00
README.md Changes to the README 2011-11-28 17:50:01 +01:00
build.h js 2011-12-08 13:17:56 +01:00
configure.ac added more documentation, minor changes in startup 2011-12-05 13:18:03 +01:00
durham.h reorganised index structure, added within, added documentation 2011-11-06 14:01:08 +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. autoconf
  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. "./avocdb" to start a REST server or "./avocdb --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

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