The key-value-store tag has no wiki summary.
0
votes
0answers
22 views
Redis Multi-Set With a TTL
In redis there is a SETEX command that allows me to set a key that expires, is there a multi-set version of this command that also has a TTL?
both MSET and MSETNX commands do not have such an option.
...
-1
votes
0answers
35 views
Comparison between key–value store and graph databases
I cannot make a clear idea of the possible usage of key-value databases compared to others. At what point do more complex databases come to make advantage of their more focused structure (ie: will ...
1
vote
1answer
88 views
With GWan's key/value store can more than one index be created for an entity?
For GWan's key value store can I create more than one index for a given single type of entity?
Also can I query more than one index at once such as find a item with age > 5 and height > 100 if I ...
-1
votes
1answer
77 views
Add values of identical keys together in Ruby hash
I have a hash table that was created from a .txt file. Certain elements in the hash table has the same key. Ruby takes the last instance and uses that value in the hash table. How would I go about ...
0
votes
0answers
41 views
Minimum hash table size per element (in theory and practice)
I am trying to store a very large number of genetic sequences of a fixed length (e.g., 100-length strings) in a hash table -- on the order of 5-20 billion.
Some of these can be represented in 2 bits ...
0
votes
1answer
63 views
Rails key-value store always re-serialize the stores on save
class Car < ActiveRecord::Base
store :options, accessors: [:bla, :blaa, :blaaa]
end
In the console:
Car.create(name: "aventador")
car = Car.last
=> #<Item id: 5839, name: ...
0
votes
1answer
117 views
key value store database on iOS
One example of an effort to create a key value store database on the iOS is YapDatabase.
However, I have no experience with it, and would like to understand whether it's worth it to use this, instead ...
1
vote
1answer
113 views
Access KV store and Environment Variables in G-WAN using MONO
I got mono 3.0.6 working with G-WAN and now I am trying to use G-WAN persistent pointers and KV Store using mono but don't know how to do it.
G-WAN does expose some functions on gwan_api.cs but the ...
0
votes
3answers
38 views
Pulling array ID values?
I am attempting to write some PHP that places values in a 2D array and create a table to present the data. My problem comes when I try to create a button at the end of each row, I am trying to give it ...
0
votes
3answers
47 views
What's a good java-friendly in-memory map supporting range queries?
I'm looking for an in-memory map with java-friendly APIs (not necessarily java) that supports range queries. Our design doesn't yet call for it to be distributed.
Any suggestions? Thanks!
0
votes
1answer
56 views
How to list the namespaces of a Citrusleaf/AeroSpike host?
I want to list the namespaces on a host remotely using the C# Client SDK, and the documentation is very scarce about it.
I am aware of a server tool to do this but I need to query that from a ...
2
votes
4answers
330 views
Embedded Java key-value storage
I'm looking for a persistent key-value storage to use in my application. Specifically:
It must be embeddable into Java application. Pure Java solution would be the best.
Data must be persisted on ...
0
votes
0answers
43 views
Key-value document access from java script client application?
We are developing a JavaScript/WebGL application that needs to work in an online and an offline mode. Online usage works, no sweat. However, for the offline mode, the user expects to download a single ...
1
vote
2answers
38 views
Column count doesn't match value count at row 1 - But I have 27 columns and 27 values? PHP MySQL error
Here is my array:
$person = array(
"fullname" => $fn,
"skin_shade" => $_POST['skin_shade'],
"acne" => $_POST['acne'],
"dry_skin" => $_POST['dry_skin'],
"oily_skin" ...
0
votes
0answers
38 views
Who assigns a key in the key-value store nosql database?
In many white papers I've read, it is stated that in key value stores (hash table implementation), the key is assigned by the system to a key value pair. However, in others, it is given that a user ...
2
votes
1answer
73 views
Looking for a key-value database that is not in-memory, and have “list,set” datatypes
I am using redis to store highly requested info, but I want to store less-requested stuff in a list/set on the disk. I have been looking around with no luck. Memcached, Riak etc. don't seem to have ...
2
votes
0answers
180 views
Distributed key-value storage for total data size of 80TB
TL;DR:
I'd like to have recommendations for a distributed key-value storage, for avg. entry size of up to 50KB, to be installed on a Linux environment (dedicated servers).
A file-system solution ...
2
votes
3answers
244 views
Java persistent key-value store
I know this may have been asked a zillion times before but I cannot seem to find the golden solution for my exact use case.
I only have one data structure, a map where the key is a string. The ...
0
votes
0answers
139 views
Using iCloud Key-Value Store to Sync a Dynamic List of Items
I want to sync a small amount of data items (of a custom class) using iCloud Key Value Store.
The Item class of the objects to store and sync looks like this:
@interface Item : NSObject ...
1
vote
2answers
84 views
Common Lisp return associations from alist as new list
I have an assoc list as follows:
(defparameter *experts2*
`(
;; direction
(:direction . ( (nn-direction-expert (process-signal) :number-of-neighbors 10)
...
0
votes
2answers
85 views
Store a session information - one more Core Data table or separate session-file in “key-value” format (YAML, JSON)?
I have a Session class which I want to hold and store app's current session information (like lastLocation, remoteSessionToken, ...)
I have default Core Data setup with a bunch of tables and the most ...
2
votes
1answer
173 views
How to share kv store between vhosts, one for http, another one for https requests
Since gwan has not released the documentation of how to use the https features, i am trying to use a reverse proxy to receive https and pass http to gwan.
My problems are:
how to identify the ...
3
votes
1answer
88 views
right persistence technology [closed]
We have an application server running in nodejs and we are trying to replace our current persistence technology (MySQL). We are considering several nosql options like CouchDB, MongoDB, Redis, Riak ...
1
vote
1answer
176 views
In G-WAN's lock free KV Store, when does the node's memory get freed after a kv_del() call?
Let's say in G-WAN server thread we looked up an item in the KV Store and got a valid pointer to a "record" struct. (The KV store is attached to G-WAN's persistent pointer.)
record = ...
1
vote
2answers
96 views
looking for a distributed key value database for persistence
I'm looking for an efficient key-value distributed persistent database.
I've look into Redis, but it only support hashes with up to $2^{32}$ keys, which is not enough for my application
I've look ...
0
votes
1answer
248 views
how to Load key-value data into hbase tables?
Thanks for taking interest in my question. Before I begin, I'd like to let you know that I'm very new to Hadoop & HBase. So far, I find Hadoop very interesting and would like to contribute more in ...
0
votes
3answers
102 views
pointer or return two values to print
I'm trying to write function which get 2 values or return one value . So when i want use function i got values which are addresses i think
int function (int a, int *b, *c){
int value;
...
0
votes
2answers
131 views
How to assign 1 array's values to another array's values in php?
I have 2 arrays:
$arrA = array("a", "b");
$arrB = array("1", "2");
How to set array a to array b and keep them different objects like making $arrayA a variable (a & b) and $arrB will be the ...
6
votes
2answers
244 views
What is the benefit of a Key-Value Store over Bigtable?
What is the point of using a dedicated Key-Value Store over Bigtable? My understanding of Bigtable is that it is implemented under the hood with SSTables which are key value based. Given that, then ...
0
votes
2answers
97 views
Replacing a huge dump file with an efficient lookup Java key-value text store
I have a huge dump file - 12GB of text containing millions of entries. Each entry has a numeric id, some text, and other irrelevant properties. I want to convert this file into something that will ...
0
votes
1answer
110 views
When To Use What Database? i.e. What are the parameters should I look at when choosing a database to use?
I am developing a system which has multiple modules,
Social Media User Demography - (Document) - Name, loc, interests, work, education
Social Media User Connections - (Graph) - friends
CRM - (Rows ...
1
vote
1answer
115 views
Submitting app with iCloud enabled: is it possible? Apple: Invalid Code Signing Entitlements
Two apps, say, AppX and AppXLite, use the same iCloud key-value storage with the same Store Identifier and in entitlements file I see $(TeamIdentifierPrefix)com.company.AppX
Everything works in adhoc ...
4
votes
4answers
416 views
write heavy key-value store
I'm looking for a key value store that can be used from an EC2 instance.
item is just an unstructured string, no indexing required
item size up to ~5MB but usually below 10kB
lots of writes
reading ...
0
votes
0answers
44 views
Free for commercial use, horizontally scalable, lock many, key value store with .Net bindings? [closed]
So, I started out with redis, and decided to use hashing to have some horizontal scalability. Next I needed to be able to create locks on keys - many at a time in one operation - that are on different ...
0
votes
0answers
62 views
Web service frontend for key-value store
I'm looking for a fast solution of easy problem. I need to create API for underlying key-value store, that will listen on few interfaces and be able to serve as many requests per second as possible.
...
0
votes
1answer
222 views
An alternative to LevelDB that allows you to read a subsection of the data record
I like the look of LevelDB as a database for my application but there is one issue.
I would like to store data into the database but when I read the data sometimes I only need a particular section of ...
2
votes
2answers
230 views
feature request: an atomicAdd() function included in gwan.h
In the G-WAN KV options, KV_INCR_KEY will use the 1st field as the primary key.
That means there is a function which increments atomically already built in the G-WAN core to make this primary index ...
0
votes
1answer
139 views
g-wan main.c - to listen to sockets
I want to fork a sub-program to do some routine jobs or listen to some sockets.
If this can be done, please show with a simple example how this forked program can access the G-WAN KV store via a ...
1
vote
1answer
134 views
g-wan kv store KV_INCR_KEY
How to use the KV_INCR_KEY?
I found a useful feature in gwan api, but without any sample.
I want to add items to the KV store with this as primary key.
Also, how to get the value of this key?
0
votes
1answer
101 views
Write to several database in Redis for python
I want to write some values into different database, this is my code:
import redis
r1 = redis.Redis(host='127.0.0.1', port=6379, db = 'db1')
r2 = redis.Redis(host='127.0.0.1', port=6379, ...
0
votes
1answer
221 views
Mapping items with multiple rows from mysql to solr
So I have a normalized table with some data that I want to put into a Solr index, something akin to this
+----+--------------+--------------+---------+
| id | name | attribute | value |
...
6
votes
1answer
224 views
Key/Value store extremely slow on SSD
What I am sure of :
I am working with Java/Eclipse on Linux and trying to store a very large number of key/value pairs of 16/32 bytes respectively on disk. Keys are fully random, generated with ...
1
vote
2answers
372 views
how to create multiple logical tablets in single levelDB instance?
I am working on a Distributed key-value system (or data-store), which uses levelDB as its embedded database library in the back-end.
I want one node/machine to host multiple tablets (for the purpose ...
2
votes
2answers
111 views
Sorted Key/Value Database solution
I'm looking to implement a database solution to support very fast column based access on a set of simple 2D datasets. i.e consider this dataset
...
0
votes
1answer
67 views
Is Freebase a key-value store?
How does freebase storage system works? Does it use a type of distributed key value store like Cassandra or MongoDB? I have been looking for documentation regarding the details of this..
0
votes
1answer
90 views
When would I want to use document data store and when key-value data store?
When would I want to use document data store and when key-value data store??
Thank you!
1
vote
0answers
40 views
In browsers that support HTML5, how is the same origin policy handled with respect to key-value database on the local filesystem?
I have a webapp that has, as a major attraction, that it handles partial personal information management out of a key-value store. It works at a basic level when accessed from my website; I would like ...
2
votes
1answer
226 views
(Xcode) Permission denied with iCloud enabled
If I activate iCloud Key-Value Store and add a iCloud container I get an error "Permission denied" while trying to launch my (mac) app. But why?
The App ID is enabled for iCloud (Production & ...
2
votes
1answer
355 views
What are NoSql Key/Value databases used for
I have been hearing alot about nosql key/value databases online now. Can you give an example of what one is used for. What kind of real world data is best for these kind of databases?
1
vote
1answer
170 views
Which NoSql for sensor data and reporting?
I have problem deciding on which NoSql architecture stick to. Our business use case is that we have a lot of telemetry data coming from the assets. Which we need to regularly report based on.
We have ...
