-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcursor_api.d
71 lines (59 loc) · 1.8 KB
/
cursor_api.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import reed.database;
import std.array;
import std.algorithm;
import std.exception;
import std.stdio;
void cleanupCollections()
{
auto database = new Database();
foreach (collection; database.collections) {
if (collection.name.front != '_')
database.deleteCollection(collection.name);
}
}
void main()
{
cleanupCollections();
auto database = new Database();
auto collection = database.createCollection(Database.CollectionProperty("sample_collection"));
void putDocuments()
{
import std.conv;
foreach (i; 0..10)
collection.putDocument(["class": "a", "id": i.to!string()]);
foreach (i; 0..10)
collection.putDocument(["class": "b", "id": i.to!string()]);
foreach (i; 0..10)
collection.putDocument(["class": "c", "id": i.to!string()]);
}
writeln("Put documents");
putDocuments();
string query = "FOR u IN sample_collection RETURN u";
{
writeln("cursor");
auto cursor = database.queryCursor(query);
{
size_t i = 0;
foreach (doc; cursor) i++;
assert(i == 30);
//assertThrown!Exception(cursor.count); See https://github.com/triAGENS/ArangoDB/issues/100
}
writeln("cursor with count");
CursorOption option;
option.count = true;
auto countedCursor = database.queryCursor(query, option);
{
assert(countedCursor.count == 30);
}
writeln("cursor with batchSize 10");
option.batchSize = 10;
auto batchedCursor = database.queryCursor(query, option);
{
size_t i = 0;
foreach (doc; batchedCursor) i++;
assert(i == 30);
}
}
// TODO: Add more AQL examples
cleanupCollections();
}