key-value-store
Here are 346 public repositories matching this topic...
-
Updated
Sep 27, 2021 - C#
-
Updated
Oct 11, 2019 - Java
-
Updated
Sep 19, 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
Sep 27, 2021 - C++
-
Updated
Sep 14, 2021 - Python
-
Updated
Aug 21, 2021 - Go
-
Updated
Sep 26, 2021 - Java
-
Updated
Aug 27, 2021 - Go
-
Updated
Sep 25, 2021 - C
-
Updated
Sep 27, 2021 - Rust
-
Updated
Dec 23, 2020 - C
-
Updated
Aug 19, 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
Sep 15, 2021 - Go
-
Updated
Sep 14, 2021 - Shell
-
Updated
Jun 24, 2021 - Elixir
-
Updated
Sep 20, 2021 - Clojure
TxnLockNotFound
#[tokio::main]
async fn main() -> Result<()> {
let txn_client = TransactionClient::new(vec!["127.0.0.1:2379"]).await?;
let mut txn = txn_client.begin_optimistic().await.unwrap();
let key = "aa".to_owned();
txn.insert(key.clone(), "value".to_owned()).await.unwrap();
txn.delete(key.clone()).await.unwrap();
txn.commit().await.unwrap();
Ok(())
}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
Sep 3, 2021 - C
-
Updated
Nov 18, 2019
-
Updated
May 19, 2021 - Rust
-
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
Oct 8, 2018 - Go
-
Updated
Sep 20, 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."
Our CMake build process produces tarball packages using the cpack
TGZtarget. This produces a server and client package with a file layout meant to match where the various artifacts go.Meanwhile, the packages we include on the download page are a flat archive of various binaries produced by the build process. This include one regular package and one debug package with debug symbols for a few