mirror of https://gitee.com/bigwinds/arangodb
12 lines
394 B
Plaintext
12 lines
394 B
Plaintext
arango> db.test.ensureHashIndex("a");
|
|
{ "id" : "4873815/5922391", "unique" : false, "type" : "hash", "fields" : ["a"], "isNewlyCreated" : true }
|
|
|
|
arango> db.test.save({ a : 1 });
|
|
{ "_id" : "4873815/6381143", "_rev" : 6381143 }
|
|
|
|
arango> db.test.save({ a : 1 });
|
|
{ "_id" : "4873815/6446679", "_rev" : 6446679 }
|
|
|
|
arango> db.test.save({ a : null });
|
|
{ "_id" : "4873815/6708823", "_rev" : 6708823 }
|