1
0
Fork 0
a mirror from github
Go to file
Michael Hackstein 169042f801 Added a function to get the JSON information for one mount point 2015-01-26 11:36:20 +01:00
3rdParty Lean on system path for python. 2015-01-20 12:41:34 +01:00
Documentation added AQL optimizer rule "move-calculations-down" 2015-01-22 20:36:38 +01:00
Installation added executable bit 2015-01-26 08:39:18 +01:00
UnitTests oops, search and replace fail in the tests. 2015-01-23 18:10:30 +01:00
arangod lookup by id, too 2015-01-26 10:27:30 +01:00
arangoirb the great rename: array => object, list => array 2014-12-18 21:07:06 +01:00
arangosh Upgrade V8 to 3.31.74.1 2015-01-19 19:29:31 +01:00
config remove derived files from repository 2015-01-23 11:46:50 +01:00
etc changed local endpoint to 0.0.0.0 for relative 2014-12-23 12:17:36 +01:00
js Added a function to get the JSON information for one mount point 2015-01-26 11:36:20 +01:00
lib Setup and teardown of foxx apps and foxx dev apps should now print their errors properly 2015-01-26 11:34:50 +01:00
m4 fixed version info for cmake 2014-12-24 10:59:33 +01:00
mr removed mruby generation of errors 2014-11-01 12:15:19 +01:00
scripts Add script wrapper for cygwin. 2015-01-23 17:35:26 +01:00
utils Make bison script backwards compatible with 2.x 2015-01-09 15:50:51 +01:00
.gitignore ignore build files 2014-12-24 11:16:26 +01:00
.travis.yml attempt to fix builds killed by travisCI 2015-01-26 08:32:36 +01:00
CHANGELOG added explainer 2015-01-23 00:59:07 +01:00
CMakeLists.txt Add trailing slash for safety. 2015-01-21 09:35:51 +01:00
CONTRIBUTING.md Fix typo. 2014-12-03 10:24:57 +01:00
DEPRECATED.md toJSONSchema will be deprecated in 2.5, not 2.4. 2015-01-07 13:11:53 +01:00
EXPERIMENTAL added EXPERIMENTAL 2014-07-24 09:12:04 +02:00
GNUmakefile Too optimistic about .bat cleverness, next simplification. 2015-01-19 19:57:12 +01:00
LICENSE fixed license file 2012-03-20 09:19:36 +01:00
LICENSES-OTHER-COMPONENTS.md updated licenses 2015-01-05 12:42:08 +01:00
Makefile.am fixed comment 2015-01-04 22:04:45 +01:00
README changed www.arangodb.org to www.arangodb.org 2014-10-30 19:17:25 +01:00
README.md bumped version number 2014-12-22 16:14:57 +01:00
README.windows fixed permissions 2014-12-13 16:05:01 +01:00
README_maintainers.md unittests-shell-server-ahuacatl is deprecated 2014-12-21 14:41:30 +01:00
VERSION bumped version number 2015-01-13 19:11:54 +01:00
build.h bumped version number 2015-01-13 19:11:54 +01:00
configure.ac Upgrade V8 to 3.31.74.1 2015-01-19 19:29:31 +01:00

README.md

ArangoDB-Logo

ArangoDB

Master: Build Status Devel: Build Status

ArangoDB is a multi-purpose, open-source database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions. Use ACID transactions if you require them. Scale horizontally and vertically with a few mouse clicks.

Key features include:

  • Schema-free schemata let you combine the space efficiency of MySQL with the performance power of NoSQL
  • Use ArangoDB as an application server and fuse your application and database together for maximal throughput
  • JavaScript for all: no language zoo, you can use one language from your browser to your back-end
  • ArangoDB is multi-threaded - exploit the power of all your cores
  • Flexible data modelling: model your data as combination of key-value pairs, documents or graphs - perfect for social relations
  • Free index choice: use the correct index for your problem, be it a skip list or a fulltext search
  • Configurable durability: let the application decide if it needs more durability or more performance
  • No-nonsense storage: ArangoDB uses all of the power of modern storage hardware, like SSD and large caches
  • Powerful query language (AQL) to retrieve and modify data
  • Transactions: run queries on multiple documents or collections with optional transactional consistency and isolation
  • Replication and Sharding: set up the database in a master-slave configuration or spread bigger datasets across multiple servers
  • It is open source (Apache Licence 2.0)

For more in-depth information

For the Impatient

For Mac OSX users: execute

brew install arangodb

For Windows and Linux users: use the installer script or distribution package from our download page.

If the package manager has not already started the ArangoDB server, use the following command to start it.

unix> /path/to/sbin/arangod
2012-03-30T12:54:19Z [11794] INFO ArangoDB (version 2.x.y) is ready for business
2012-03-30T12:54:19Z [11794] INFO Have Fun!

/path/to/sbin is OS dependent. It will normally be either /usr/sbin or /user/local/sbin.

To access ArangoDB in your browser, open the following URL

http://localhost:8529/

and select Tools / JS Shell. You can now use the Arango shell from within your browser.

Alternatively, a scriptable shell is available as a command-line tool arangosh.

arangosh> db._create("hello");
arangosh> db.hello.save({ world: "earth" });

Congratulations! You have created your first collection named hello and your first document. To verify your achievements, type:

arangosh> db.hello.toArray();

More Information

Please check the Installation Manual for installation and compilation instructions.

The User Manual has an introductory chapter showing the basic operations of ArangoDB.

Or you can use the online tutorial to play with ArangoDB without installing it locally.

Stay in Contact

Please note that there will be bugs and we'd really appreciate it if you report them:

https://github.com/triAGENS/ArangoDB/issues

You can use the Google group for improvements, feature requests, comments

http://www.arangodb.com/community

Citing ArangoDB

Please kindly cite ArangoDB in your publications if it helps your research:

@misc{ArangoDB2014,
   Author = {ArangoDB},
   Title = { {ArangoDB 2.4}: An Open source, multi-purpose database supporting flexible data models for documents, graphs, and key-values.},
   Year  = {2014},
   Howpublished = {\url{http://arangodb.com/}
}