We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde5433 commit 0aeefc2Copy full SHA for 0aeefc2
leveldb.markdown
@@ -102,14 +102,28 @@ We might need to create:
102
---
103
# batch
104
105
-perform multiple
+insert multiple records at a time, atomically
106
107
``` js
108
+db.batch([
109
+ {"key":"foo","value":"123"},
110
+ {"key":"bar","value":"456"}
111
+])
112
```
113
114
115
# createReadStream
116
117
+```
118
+db.createReadStream({
119
+ gt: "a",
120
+ lt: "m"
121
+})
122
123
+
124
+* gt - greater than
125
+* lt - less than
126
127
128
# thinking lexicographically
129
0 commit comments