mirror of https://gitee.com/bigwinds/arangodb
added warning about edges
This commit is contained in:
parent
160b6a3661
commit
b17b155e4c
|
@ -6,6 +6,13 @@ v1.1.beta1 (2012-XX-XX)
|
|||
"arangod" to "arangodb", the database directory has changed from "/var/arangodb" to
|
||||
"/var/lib/arangodb" to be compliant with various Linux policies
|
||||
|
||||
- In 1.1, we have introduced types for collections: regular documents go into document
|
||||
collections, and edges go into edge collections. The prefixing (db.xxx vs. edges.xxx)
|
||||
is gone in 1.1. edges.xxx can still be used to access collections, however, it will
|
||||
not determine the collection type anymore. To create an edge collection 1.1, you can
|
||||
use db._createEdgeCollection(). And there's also db._createDocumentCollection().
|
||||
db._create() is also still there and will create a document collection.
|
||||
|
||||
* having the OpenSSL library installed is now a prerequisite to compiling ArangoDB
|
||||
removed the --enable-ssl configure option
|
||||
|
||||
|
|
Loading…
Reference in New Issue