blob: 979d35e83d06cf6e2f3561355240cd95a2cda106 (
plain)
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
|
# Database Binding
This binding provide a database API with key/value semantics.
The backend is currently a Berkeley DB.
## Verbs
* **insert**:
This verb insert a key/value pair in the database.
If the key already exist, the verb fails.
* **update**:
This verb update an existing record.
If the key doesn't exist, the verb fails.
* **delete**:
This verb remove an existing key/value pair from the database.
If no matching record is found, the verb fails.
* **read**:
This verb get the value associated with the specified key.
If no matching record is found, the verb fails.
## Arguments
* The **read** and **delete** verbs need only a **key** to work:
```code
{
"key": "mykey"
}
```
* The **insert** and **update** verbs need a **key** and a **value** to work:
```code
{
"key": "mykey",
"value": "my value"
}
```
The **value** can be any valid json.
## Dependencies
You must install BerkeleyDB and GDBM
|