1
0
Fork 0
arangodb/Documentation/Examples/collectionDatabaseCreatePro...

15 lines
392 B
Plaintext

arangosh> c = db._create("users", { waitForSync : true, journalSize : 1024 * 1204 });
[ArangoCollection 647587266, "users" (type document, status loaded)]
arangosh> c.properties();
{
"doCompact" : true,
"journalSize" : 1232896,
"isSystem" : false,
"isVolatile" : false,
"waitForSync" : true,
"keyOptions" : {
"type" : "traditional",
"allowUserKeys" : true
}
}