key-value-store
Here are 316 public repositories matching this topic...
-
Updated
Jun 29, 2021 - C#
-
Updated
Oct 11, 2019 - Java
-
Updated
Jun 21, 2021 - JavaScript
Currently we don't have any mechanism to limit the maximum number of clients that could be handled simultaneously.
This feature should be designed properly. Here is some clue: https://redis.io/topics/clients#maximum-number-of-clients
-
Updated
Jun 29, 2021 - C++
-
Updated
Jun 29, 2021 - Python
-
Updated
May 18, 2021 - Go
-
Updated
Jun 29, 2021 - Java
-
Updated
May 1, 2021 - Go
-
Updated
Dec 23, 2020 - C
-
Updated
May 26, 2021 - Java
Right now, PebblesDB uses a lot of memory for the TableCache (caching metadata) and for the bloom filters used for each sstable.
We want to add a command line option for PebblesDB which would limit the total amount of memory used by PebblesDB for the TableCache and bloom filters.
When using the specified amount of memory, preference should be given first to the table cache, and then bloom
-
Updated
Oct 27, 2020 - Go
-
Updated
Jun 28, 2021 - Shell
-
Updated
Jun 24, 2021 - Elixir
-
Updated
May 26, 2021 - Clojure
There are no external core dependencies other than LZ4 and Snappy which are not used unless compression is configured. So they should be installable.
libraryDependencies += "io.swaydb" %% "lz4" % "version"
//OR
libraryDependencies += "io.swaydb" %% "snappy" % "version"For now we have to exclude
-
Updated
Nov 18, 2019
-
Updated
Jun 28, 2021 - C
Currently pessimistic_lock will always issue a request.
If heartbeat is enabled, we don't have to lock the same key for multiple times.
For get_for_update-like operations, we can have a separate cache to cache its value.
-
Updated
May 19, 2021 - Rust
-
Updated
Oct 8, 2018 - Go
-
Updated
Sep 22, 2020 - Go
It would be better and easier to debug a program if the BytesEncoding and BytesDecoding traits could return any error type.
To do so we need to modify the Error enum and more specifically the Encoding and Decoding variants to wrap a Box<dyn Error>.
-
Updated
Jun 30, 2021 - Rust
-
Updated
May 24, 2021 - C++
Improve this page
Add a description, image, and links to the key-value-store topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the key-value-store topic, visit your repo's landing page and select "manage topics."


fdbcliflags currently contain a mixture of_and-(probably for historic reasons). I would propose to unify the flags and only use either_or-personally I tend to hyphens like recommended in the POSXI standard (https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html). Currentfdbclihelp output: