1
0
Fork 0
a mirror from github
Go to file
Frank Celler 236dfce9e8 Merge branch 'master' of github.com:triAGENS/AvocadoDB 2012-01-04 15:25:45 +01:00
Admin cleanup 2012-01-03 18:57:13 +01:00
ApplicationServer cleanup 2012-01-03 19:01:53 +01:00
Basics cleanup 2012-01-03 18:57:25 +01:00
BasicsC added -s 2012-01-04 15:25:31 +01:00
Dispatcher cleanup 2012-01-03 19:00:49 +01:00
GeneralServer cleanup 2012-01-03 19:01:02 +01:00
GeoIndex cleanup 2012-01-03 12:23:48 +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 cleanup 2012-01-04 09:07:33 +01:00
Logger cleanup 2012-01-04 09:31:52 +01:00
ProgramOptions cleanup 2012-01-03 12:24:33 +01:00
Rest cleanup 2012-01-04 09:32:32 +01:00
RestHandler cleanup 2012-01-04 09:32:44 +01:00
RestServer cleanup 2012-01-04 09:37:50 +01:00
ResultGenerator cleanup 2012-01-04 09:38:12 +01:00
Scheduler cleanup 2012-01-04 09:38:42 +01:00
ShapedJson cleanup 2012-01-03 12:24:46 +01:00
UnitTests reorganisation of directory tree structure 2012-01-04 09:47:33 +01:00
V8 cleanup 2012-01-04 09:39:41 +01:00
Variant cleanup 2012-01-03 12:26:58 +01:00
VocBase reorganisation of directory tree structure 2012-01-04 09:45:55 +01:00
config added -s 2012-01-04 15:25:31 +01:00
html/admin added admin 2011-12-02 11:03:41 +01:00
js cleanup 2012-01-04 09:29:41 +01:00
m4 adjustment for different build dir 2012-01-04 15:23:06 +01:00
.gitignore ignore build 2012-01-04 12:10:44 +01:00
GNUmakefile reorganisation of directory tree structure 2012-01-04 09:47:33 +01:00
Makefile.am adjustment for different build dir 2012-01-04 15:23:06 +01:00
Makefile.files adjustment for different build dir 2012-01-04 15:23:06 +01:00
README.md Changes to the README 2011-11-28 17:50:01 +01:00
build.h added -s 2012-01-04 15:25:31 +01:00
configure.ac reorganisation of directory tree structure 2012-01-04 09:47:33 +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();