1
0
Fork 0

Изменил(а) на 'README.md'

master
Grigorii Safronov 5 months ago
parent 570701422a
commit ae1f417cb5

@ -25,7 +25,7 @@
11. [FAQ](#faq)
12. [Roadmap](#roadmap)
13. [Contact](#contact)
14. [Limitations] (#Limitations)
<!-- ABOUT THE PROJECT -->
@ -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.

Loading…
Cancel
Save