mirror of https://gitee.com/bigwinds/arangodb
16 lines
416 B
Plaintext
16 lines
416 B
Plaintext
arangosh> c = db._create("users", { waitForSync : true, journalSize : 1024 * 1204 });
|
|
[ArangoCollection 1121186699, "users" (type document, status loaded)]
|
|
arangosh> c.properties();
|
|
{
|
|
"doCompact" : true,
|
|
"journalSize" : 1232896,
|
|
"isSystem" : false,
|
|
"isVolatile" : false,
|
|
"waitForSync" : true,
|
|
"keyOptions" : {
|
|
"type" : "traditional",
|
|
"allowUserKeys" : true
|
|
},
|
|
"indexBuckets" : 8
|
|
}
|