A key-value pair is a set of two linked data items: a key which uniquely identifies some item of data, and the value, which is either the data that is identified or a pointer to the location of that data. Key-value pairs are frequently used in lookup tables, hash tables and configuration files.
0
votes
0answers
13 views
time series logging/statistics - scalable solution
It`s quite usual to query database or log files for uptime information or for number of requests per given time interval.
As you gather more and more data SQL queries or log crawling becomes slower ...
1
vote
1answer
22 views
Select values based on the values of the first column
I have a database that looks something like this:
Name -Finding One -Finding Two -Finding Three
John -Low Cost
John -Accessible -Low Cost
Michael -High Cost -Good ...
-3
votes
4answers
56 views
Php foreach loop key print a particular value
i'm trying to get individual values from an php foreach loop.
My code is
$foo = array('a' => 'apple', 'b' => 'ball', 'c' => 'coke');
foreach($foo as $key => $item) {
// Need to ...
0
votes
1answer
20 views
Fast AdHoc Queries
(Requirements)
We need a fast and scalable solution.
We need faster way of doing adhoc queries;
I am thinking about seperating my 10 column table into 10 tables.
The table has got 10 Billion rows.
...
0
votes
0answers
78 views
Looping issue with Dictionary C#
I am looping a dictionary type and getting the issue, don't understand what am I doing wrong, did lots of search on google but :(
//Tour class have dictionary property of type <int, string>
...
0
votes
1answer
68 views
Convert JSON key value pairs into JSON Array Android
I have an array of key-value pairs like this:
...
0
votes
4answers
42 views
PHP - remove index with duplicated values
I have an 2D array, it is simple as this:
[0] => Array
(
[0] => 6
[1] => 6
[2] => 6
)
[1] => Array
(
[0] => 6
[1] => 6
...
0
votes
2answers
38 views
Using PHP to extract key from value in an array
I have a PHP array that prints the following information:
Array (
[0] => 23
[1] => 34
[2] => 35
[3] => 36
[4] => 37
[5] => 38
..<snip>..
)
...
0
votes
1answer
46 views
C# ConcurrentDictionary - Best practice and method for wildcard key search
I have a ConcurrentDictionary of string (key) and object (value).
I want to have an if statement that returns true if any key in my dictionary contains the sub-string 'xyz'.
Better yet, if it begins ...
-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
votes
1answer
32 views
Easier to put $_POST With Array
I did try many times to make values easier to put. It's my meaning to put values with array, because i don't need to type more values then, he can put it automatically.. For example, i write:
...
4
votes
3answers
96 views
Is there any way to update the Key element of a Dictionary directly in .NET?
At the moment, I have no other way than this one (an indirect update):
private void UpdateKey(Dictionary<string,object> dict, string oldKey, string newKey){
if(dict.ContainsKey(oldKey)){
...
1
vote
2answers
29 views
Java - How can I get a single pair from a LinkedHashMap?
Specifically, I want to use a LinkedHashMap in a "for each" loop. For example, let's say I create a LinkedHashMap:
LinkedHashMap<String, Integer> someHash = new LinkedHashMap<String, ...
0
votes
2answers
70 views
In Javascript, how do you access key value data from an object in a mixed array?
my name's Mike and my question is two-fold:
How can I access the objects in my array so that they properly appear in my question prompt, and
How can I access the properties of the randomely ...
2
votes
0answers
22 views
Is it possible to include hyperlink in app.config key value?
Is it possible to include hyperlink as a part of text in app.config key value pair (email body text as value)? I want to generate email body from app.config key value.
For example:
<add ...
7
votes
1answer
195 views
Sharing Common Key-Value Storage Between Multiple Apps Not Working
I'm preparing to launch a second version of one of my apps. I am going to be releasing this new version under a new bundle ID from the previous version. In the previous version, I used the iCloud ...
0
votes
2answers
60 views
Same key different Reducers (HADOOP)?
is it possible to process values with same key on different reducers ? from all mappers i got data with same key and i want to process it with different reducers ? my confusion is that the book says ...
5
votes
1answer
44 views
iOS key value coding
Let's assume we have an object of type person, which has a property called name.
Person *p;
[p setValue:@"John" forKey:@"name"];
This works very nicely. What I want to do is dig deeper. Say the ...
-2
votes
3answers
60 views
Python Dictionary index of a value
I am currently trying to get the index of a value from a dictionary and unsure what to try.
My dictionary is:
midi2notes = {
...
0
votes
1answer
95 views
Access key/value in a paired-bar-chart - D3.js
I'm attempting to make a Paired Bar Graph between glob and local within my JS Object/Array. I've made bar graphs in D3 previously, but haven't used objects. I'm finding it difficult to access the ...
0
votes
2answers
48 views
Reduce output to desired file based on Key/value pair (HADOOP)
is it possible to send reducer output to more than one file based on the key ? like,
if(key1)
{
//output to file1 using context.write() or otherwise
}
else
{
//output to file2 ...
0
votes
1answer
19 views
Comparing two LongWritable in if statement
how to compare two LongWritable in If statement ??? like,
if(compareTo(key1,new LongWritable(1))
{
//do something;
}
0
votes
3answers
58 views
Shared Preference or Persistent Storage in BlackBerry 10
I want to know if there is an option for storing a KEY-VALUE pair in persistent storage of a mobile device for Blackberry 10.
If yes, How to use it.
Thanks
0
votes
1answer
66 views
Iterate over key/values more than once in Reduce phase (HADOOP)?
How to iterate multiple times on the key/value pairs received in Reduce phase of HADOOP. i want to do something like it, but it's not entering into the 2nd iteration.
for (Vector value : values)
{
...
1
vote
2answers
53 views
Creating Clojure vector(s) using values pulled from map(s) via keywords
I have a Clojure vector of maps used as a lookup table:
(def data
[{map1},{map2},...,{nth-map}])
Each map in the vector contains two key/value pairs:
{:key1 "Value1", :key2 "Value2"}
So the ...
1
vote
1answer
59 views
TokyoCabinet Write speed too slow
I have a perl script (in Ubuntu 12.04 LTS) writing to 26 TCH files. The keys are roughly equally distributed. The writes become very slow after 3 Million inserts (equally distributed to all the files) ...
0
votes
1answer
60 views
Get array values using index key in Ruby on Rails
I'm iterating through an array or hash, and I'd like to get values based on index.
@lv = {'apple' => ['round', 'red'], 'more names' => ['tags', 'more tags']}
@lv.each do |key, value|
# if ...
0
votes
1answer
17 views
Array Key:Value Not Outputting Element Name
I'm creating an array from a database and its being created correctly as seen below.
array(2) {
["members"]=> bool(true)
["maps"]=> bool(true)
}
The issue is when I output the ...
0
votes
0answers
24 views
Justification for HBase being called a column oriented data store?
Does HBase fit into column-oriented database or datastore definition of http://en.wikipedia.org/wiki/Column-oriented_DBMS.If it does; does it mean the KeyValue entries in HFile is stored in a column ...
2
votes
1answer
47 views
How to get distict count on dynamodb on billion objects?
What is the most efficent way to query my dynamodb objects ?
Such as my objects have ten properties and i want to get a distinct count based on 3 properties .
0
votes
1answer
28 views
How to get random value from a file in python?
It would have been very gratifying to figure this out by myself but I haven't been able to.
I want to grab a random value from a text file that contains data in the form of a dictionary eg:
{'One': ...
-2
votes
3answers
41 views
reading a value from a dictionary that doesn't associate with a key
I have this dictionary
StudentDictionary = {"156" :{"name":"steve", "lastvisit":"10-02-2012", "age":12}}
if I have this dictionary S = {"name":"steve", "lastvisit":"10-02-2012", "age":12} I know ...
1
vote
0answers
132 views
Hash Table in Python
Currently am using 5 dictionaries in my program where 2 of them have 13 Million key, value pairs. Each Dict is pair where key is char value of length 1-6, and value is another dict of key, value ...
0
votes
2answers
42 views
How do it I set the number of items in a key:value dictionary as the keys value in python
Hello everyone I have an unique question.
In a key:value dictionary, how do I get the len of an item list and let the len be the keys value?
Such as
D = {'Chicago Cubs': 1907, 1908, 'World ...
0
votes
0answers
39 views
How to Sort a keySet by Corresponding Values [duplicate]
First of all let me say, please dont answer this by saying "just use a TreeMap" I am aware of TreeMaps but specifically want to learn if the following is possible.
In Java, lets say I have a HashMap ...
0
votes
1answer
74 views
How to check if a key name exists in the registry with vb.net?
In vb.Net I can create a registry key like this
My.Computer.Registry.CurrentUser.CreateSubKey("TestKey")
and the following code get if a value exists inside an existing key
If ...
0
votes
0answers
3 views
Breaking the list and appending to newline when the list size reaches 5n
Hi I am getting a list from database like this
Now I want to break the list whenever the count reaches to 5n..
My existing output is 1 2 3 4 5 6 7 8 9 10
I need output as 1 2 3 4 5
...
0
votes
2answers
52 views
Dictionary: Print entire list from max to min items in a dictionary
Hello everyone I have a question on printing the max to min based on the number of items in the dictionary.
I need an entire key list printed with the number of times shown next to the key.
Based ...
2
votes
2answers
84 views
find values in map of map & return primary map's keys (or alternative)
I'm writing a websocket++ server for a site that's mostly a few pages with article listings like you'd see on any social news site or the questions link on stack; however, I dynamically change the ...
0
votes
2answers
108 views
Manage Tab Index in GridView
I have 3 columns in a gridview - code,Qty,name.If a cell(Say Code), is in edit mode, pressing the arrow or tab keys will fire the 'CellEndEdit' event and after that,moves the selection to the next ...
1
vote
0answers
33 views
Key-key pair dictionary with two way access by keys? [duplicate]
The traditional dictionary will hold key-value pairs. I need something to hold key-key pairs where key1 and key2 will be two different types of objects. For instance,
SourceIdentity key1 = ...
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
0answers
54 views
Any way to see who is triggering changes re: key value observing?
I'm using key value observing to perform specific actions whenever certain properties are changed (e.g., relayout subviews of a custom UIView whenever its frame or bounds change). Is there any way to ...
0
votes
3answers
71 views
Java - Which database/technologie to use for a huge amount of high frequently changing key-value-pairs? [closed]
I'm developing a Java application which is dealing with a huge amount (~ 1.000.000) of key-value-pairs. The keys have a fixed size while the size of the values vary from 20 bytes up to ~1 kbyte. So in ...
0
votes
0answers
270 views
Populate WebGrid in MVC from dynamic list
I realize this may not be the best way of doing things but I am passing a DataTable to my view. In the view I then convert the DataTable to a List<dynamic>. After the conversion, I am ...
0
votes
1answer
181 views
Gwan kv, persistent flag / Number of items
I have decided to use Gwan's KV store in place of a Redis NoSQL database. I saw in the Manual that the kv supports a persistent flag for file IO to keep data I guess between restarts. It uses the ...
0
votes
1answer
79 views
Key Value storage without a file system?
I am working on an application, where we are writing lots and lots of key value pairs. On production the database size will run into hundreds of Terabytes, even multiple Petabytes. The keys are 20 ...
3
votes
4answers
293 views
Custom serializer - deserializer using GSON for a list of BasicNameValuePairs
I'm trying to implement a custom gson serializer/deserialiser for some list of BasicNameValuePair objects.
I saw the partial solution code (for serialization) here:
How do I get Gson to serialize a ...
2
votes
2answers
449 views
FileInputStream, FileOutputStream - check file for specific value/line/string
I consulted this community already a few times, but nevertheless it seems I'm still to unexperienced to solve my problems on my own.
My latest problem is the following:
I have a file, created in ...
10
votes
6answers
364 views
Haskell: converting a list of (a, b) key-value pairs (with possibly repeated keys) to a list of (a, [b]) grouped by key
I'm a Haskell beginner. Let's suppose I want to write a function convertKVList that takes a flat list of key-value pairs, where some of the keys might be repeated, and turns it into a mapping from ...




