From ae1f417cb59ee4c4072361d806af97d71e849869 Mon Sep 17 00:00:00 2001 From: Grigorii Safronov Date: Fri, 12 Apr 2024 16:23:55 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c9647118..c76c8da5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ 11. [FAQ](#faq) 12. [Roadmap](#roadmap) 13. [Contact](#contact) -14. [Limitations] (#Limitations) + @@ -313,19 +313,12 @@ With just these few steps you've now got a fault-tolerant, distributed relationa ## Contact -Grigoriy Safronov - gvsafronov@gmail.com +Grigoriy Safronov - gvsafronov@yandex.ru Project Link: [https://fluidb.icu](https://fluidb.icu) -## Limitations - - * In-memory databases are currently limited to 2GiB (2147483648 bytes) in size. You can learn more about possible ways to get around this limit in the [documentation]. - * Because fluidB peforms _statement-based replication_ certain [_non-deterministic functions_](https://www.sqlite.org/deterministic.html), e.g. `RANDOM()`, are rewritten by fluidB before being passed to the Raft system and SQLite. - * This has not been extensively tested, but you can directly read the SQLite file under any node at anytime, assuming you run in "on-disk" mode. However there is no guarantee that the SQLite file reflects all the changes that have taken place on the cluster unless you are sure the host node itself has received and applied all changes. - * In case it isn't obvious, fluidB does not replicate any changes made directly to any underlying SQLite file, when run in "on disk" mode. **If you change the SQLite file directly, you may cause fluidB to fail**. Only modify the database via the HTTP API. - * SQLite dot-commands such as `.schema` or `.tables` are not directly supported by the API, but the supports some very similar functionality. This is because those commands are features of the `sqlite3` command, not SQLite itself.