mirror of https://gitee.com/bigwinds/arangodb
15 lines
392 B
Plaintext
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
|
|
}
|
|
}
|