From b42440172d9027e0a1d62ea355fe63511e210b2f Mon Sep 17 00:00:00 2001 From: Conner Hewitt Date: Wed, 25 Dec 2024 17:15:31 -0600 Subject: [PATCH] Updated README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8d32ded..687a4d9 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,9 @@ Motivation for creating this project was the need for a persistent priority queu Instead of using an in-memory heap structure to store data, everything is stored using the [Go port of LevelDB](https://github.com/syndtr/goleveldb). This results in very little memory being used no matter the size of the database, while read and write performance remains near constant. +> [!CAUTION] +> This project uses the Go port of LevelDB, which may not be production safe. The author of this project has used this package in production and has experienced extreme database slowdown. If used in production, please make sure you make regular backups and test recovery should need the arise. + ## Features - Provides stack (LIFO), queue (FIFO), priority queue, and prefix queue structures.