key-value-store
Here are 355 public repositories matching this topic...
-
Updated
Nov 12, 2021 - C#
-
Updated
Nov 6, 2021 - Java
-
Updated
Oct 5, 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
Nov 12, 2021 - C++
-
Updated
Sep 29, 2021 - Python
-
Updated
Aug 21, 2021 - Go
-
Updated
Nov 12, 2021 - Java
-
Updated
Aug 27, 2021 - Go
-
Updated
Nov 12, 2021 - C
-
Updated
Nov 12, 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
Nov 8, 2021 - Elixir
-
Updated
Nov 11, 2021 - Shell
-
Updated
Nov 11, 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(())
}Accessing Slice from Java requires input ByteOps for each API call which is repetitive and no fun.
Slice
.ofBytesJava(50)
.addInt(data.getInteger(), ByteOps.Java())
.addLong(data.getLongVal(), ByteOps.Java())
.addStringUTF8(data.getString(), ByteOps.Java())
.close(); See example.
Solution
Maybe
-
Updated
Nov 10, 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
Oct 29, 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."
Calling
setclassinfdbcliwill try to change any process that matches the process filter given. If no processes are found, it silently does nothing. Instead, it should report back to the user that no processes matched the given filter.