update index.html

Commit 5ba583a · patx · 2025-12-11T01:45:36-05:00

Changeset
5ba583a1c5dd5b1922362b742f48aa7a679f8942
Parents
0d25ee698a0ef7adc239fa4d230ea460fa807a03

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/docs/index.html b/docs/index.html
index 669194f..c57ae82 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -224,6 +224,7 @@ asyncio.run(main())
     <li><strong>Unified sync/async:</strong> every core method works in both worlds via the same name.</li>
     <li><strong>Atomic disk writes:</strong> uses a temp file and <code>os.replace</code> to avoid partial writes.</li>
     <li><strong>No hidden autosave:</strong> nothing is written to disk unless you call <code>save()</code> or exit a context manager cleanly.</li>
+    <li><strong>Single file simplicity:</strong> because the database is saved to a single file pickleDB is not thread safe or process safe. If you need this and you want to use the same/similar API check out <a href="https://github.com/patx/mkvdb">mkvDB</a>.</li>
   </ul>
 
   <h2>Context Managers</h2>