patx/pickledb
edit index.html to include a shameless plug for mkvDB
Commit f5f8993 · patx · 2025-12-10T21:08:32-05:00
Comments
No comments yet.
Diff
diff --git a/README.md b/README.md
index 3e51420..7261c18 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@
[pickleDB](https://patx.github.io/pickledb) is a fast, easy to use, in-memory Python
key-value store with first class asynchronous support. It is built with the `orjson`
-module for extremely high performance and was originally inspired by Redis. It is
-licensed under the BSD three-clause license. [Check out the website](https://patx.github.io/pickledb)
-for installation instructions, API docs, advanced examples, benchmarks, and more.
+module for extremely high performance. It is licensed under the BSD three-clause
+license. [Check out the website](https://patx.github.io/pickledb) for installation
+instructions, API docs, advanced examples, benchmarks, and more.
```python
from pickledb import PickleDB
diff --git a/docs/index.html b/docs/index.html
index 7847cbe..669194f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -425,12 +425,12 @@ print(get_if_fresh(db, "session")) # None
<h2>When Not to Use pickleDB</h2>
<ul>
<li>You need multi-process or multi-host concurrency.</li>
+ <li>ASGI web servers or frameworks. <small>unless your using a single worker ;)</small></li>
<li>Your dataset is too large to comfortably fit in memory.</li>
<li>You need rich querying, indexing, or joins.</li>
</ul>
<p class="muted">
- In those cases, consider <a href="https://redis.io/">Redis</a> or
- <a href="https://www.mongodb.com/">MongoDB</a> instead.
+ In those cases, consider Redis, SQLite, PostgreSQL, MongoDB, or <a href="https://github.com/patx/mkvdb">mkvDB</a>.
</p>
<p class="muted">