key-value-store Questions
2
It seems a same thing from users aspect.
Singley asked 2/12, 2011 at 5:33
5
Solved
I wanted to know if there was a good practice for list of values management.
For example I have a database table logs as following :
---------------
| logs |
|-------------|
| id |
| idLogType |
...
Impeachable asked 20/6, 2014 at 9:45
4
Solved
As suggested in comments from Key: value store in Python for possibly 100 GB of data, without client/server and in other questions, SQLite could totally be used as a persistent key:value store.
Ho...
Datary asked 11/11, 2017 at 12:20
1
In badgerDB, we have billions of keys of type string and values of type HashValueList. In our use case length of HashValueList might be in millions. We have to encode key and value in []byte before...
Nozicka asked 17/3, 2022 at 10:8
2
Solved
In CAP theorem, Redis is specified as a database which lacks availability (which has partition tolerance and consistency).
But there are many places where Redis is considered as a high availability...
Prieto asked 28/12, 2019 at 13:22
7
Solved
There are many solutions to serialize a small dictionary: json.loads/json.dumps, pickle, shelve, ujson, or even by using sqlite.
But when dealing with possibly 100 GB of data, it's not possi...
Orphrey asked 11/11, 2017 at 1:53
1
I will describe the data and case.
record {
customerId: "id", <---- indexed
binaryData: "data" <---- not indexed
}
Expectations:
customerId is random 10 digit number
A...
Idiopathy asked 26/8, 2020 at 13:25
3
Solved
What is the difference between iCloud's "Key-value storage" and CloudKit?
An example scenario would be: if one were to sync a sizable array containing dictionaries, arrays, and other objects. Woul...
Whore asked 13/9, 2015 at 18:19
1
Solved
I am new to key-value stores. My objective is to use an embedded key-value store to keep the persistent data model. The data model comprises of few related tables if designed with conventional RDBM...
Barman asked 12/3, 2020 at 12:46
4
Solved
We have a system that stores (single-digit) millions of images, varying in size from 8KB to 500KB, median around 15KB, average 30KB. The total data set is currently around 100GB. We want to access ...
Irrecoverable asked 18/11, 2011 at 13:50
5
Solved
I am interested to know the performance impacts of using MySQL as a key-value database vs. say Redis/MongoDB/CouchDB. I have used both Redis and CouchDB in the past so I'm very familiar with their ...
Rolan asked 19/6, 2010 at 23:3
4
Solved
var veg = {"mushroom": 30, "pepper": 60, "corn": 1, "carrot":
2, "pumpkin": 4}
If the object value is greater than 5, then print all the keys from veg. I can't seem to figure out how to put the ...
Gilmour asked 13/4, 2019 at 0:26
1
Solved
I am trying to build a 6-tuple store on top of wiredtiger. The tuples can be described as follow:
(graph, subject, predicate, object, alive, transaction)
Every tuple stored in the database is un...
Overbear asked 13/3, 2019 at 13:49
2
I am new to zookeeper and distributed systems, and am learning it myself.
From what I understand for now, it seems that ZooKeeper is simply a key-value store whose keys are paths and values are s...
Way asked 16/7, 2015 at 17:34
1
I have a simple question about using Cassandra as a key-value data store.
I am stil new to Casandra concepts and I have searched for an answer for this question in several places but, I could not f...
Ancestress asked 14/3, 2018 at 14:23
8
Solved
I'd like a unique dict (key/value) database to be accessible from multiple Python scripts running at the same time.
If script1.py updates d[2839], then script2.py should see the modified value whe...
Balcony asked 23/1, 2018 at 19:42
1
I am working on a cloud application that requires low latency and very high read/writes per second. I will only have around 1 million records stored persistently but this may fluctuate largely as t...
Perusal asked 3/6, 2017 at 17:55
2
Solved
I frequently write lists of things and perform enumeration against them to perform some get/set.
I hate enumerating hashtables, since whenever I have to do it, I have to bend my mind backwards to ...
Crosshead asked 19/5, 2017 at 16:48
1
Solved
I'm trying to create a really simple IndexedDB with some JavaScript, but it fails in the on handler already. Apparently the browser (Chrome 57) is not able to parse the keyPath (in Basic Concepts) ...
Bricole asked 7/4, 2017 at 9:0
2
Solved
I am new to Cassandra. As I understand the maximum number of tables that can be stored per keyspace is Integer.Max_Value. However, what are the implications from the performance perspective (speed,...
Leffler asked 19/10, 2015 at 10:45
10
Berkeley DB (JE) licensing may be a deal killer. I have a Java application going to a small set of customers but as it is a desktop application, my price cannot support individual instance li...
Eggert asked 17/2, 2011 at 17:47
2
Redis is single threaded yet it is fast. Can we use Redis database for API calls as APIs call is concurrent in nature? Is Redis capable of handling multiple API call requests?
Cheriecherilyn asked 15/2, 2017 at 9:44
1
Solved
During investigation within new features in Apache Kafka 0.9 and 0.10,
we had used KStreams and KTables. There is an interesting fact that Kafka uses RocksDB internally.
See Introducing Kafka Stre...
Boric asked 18/10, 2016 at 14:8
1
Solved
I am using GraphQL in my Node.js application. And I want to store an object that uses keys as a locale short code and values for the string in the corresponding language. (like { en: "Hello", ru: "...
Rhapsodic asked 26/9, 2016 at 8:2
7
I am looking to write a Key/value store (probably in python) mostly just for experience, and because it's something I think that is a very useful product. I have a couple of questions. How, in gene...
Scientistic asked 14/11, 2009 at 7:42
1 Next >
© 2022 - 2025 — McMap. All rights reserved.