Skip to content

Commit 1d0fb18

Browse files
committed
deps upgrades.
1 parent cd5bb66 commit 1d0fb18

File tree

3 files changed

+719
-112
lines changed

3 files changed

+719
-112
lines changed

Readme.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ to get up and running with it, and it gives you an impressive amount of power, t
1818
its a great fit for any personal project that needs to persist data. If you find yourself wanting to work with raw json
1919
files, it's a rather large improvement on writing your own loading/saving/querying logic.
2020

21-
The one caveat to keep in mind is this: _every database your work with is stored in memory_. Since TrivialDB is
22-
in-pricess, you might run into the memory limits of node; on a 64 bit machine, this is 1.76GB by default. (You can
23-
increase this via `--max_old_space_size=<size>`.) In practice, however, this isn't actually that much of a limitation.
24-
Generally, you're working with a large amount of your data in memory anyway; your data sets can get relatively large
25-
before you even need to worry about this.
21+
The one caveat to keep in mind is this: _every database your work with is stored in memory_. Since TrivialDB is in-process, you might run into the memory limits of node; before v12, on a 64 bit machine, this is 1.76GB by default. (You can increase this via `--max_old_space_size=<size>`.) In practice, however, this isn't actually that much of a limitation. Generally, you're working with a large amount of your data in memory anyway; your data sets can get relatively large before you even need to worry about this.
2622

2723
In fact, the very popular nosql database [Redis][redis] is in-memory. In their FAQ, they have this to say:
2824

@@ -520,7 +516,7 @@ dead; if you're concerned, feel free to file an issue and ask if it's still bein
520516

521517
### Upcoming v3.0.0
522518

523-
Currently, I'm working on adding a few minor breaking changed (such as implicit changing #34), and browser support. If
519+
Currently, I'm working on adding a few minor breaking changed (such as implicit chaining #34), and browser support. If
524520
you want to test these features, you can check out master and give it a spin. If you find a bug, please file an issue!
525521

526522
## Contributing

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
},
2828
"license": "MIT",
2929
"dependencies": {
30-
"base62": "^1.1.0",
30+
"base62": "^2.0.1",
3131
"bluebird": "^3.0.5",
3232
"lodash": "^4.0.1",
3333
"make-error": "^1.0.4",
3434
"mkdirp": "^0.5.0",
3535
"uuid": "^3.0.0"
3636
},
3737
"devDependencies": {
38-
"mocha": "^3.2.0"
38+
"mocha": "^6.1.4"
3939
}
4040
}

0 commit comments

Comments
 (0)