Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
3k views

The default for KeyValuePair

I have an object of the type IEnumerable<KeyValuePair<T,U>> keyValueList, I am using var getResult= keyValueList.SingleOrDefault(); if(getResult==/*default */) { } else { } How ...
11
votes
3answers
9k views

A KeyValuePair in Java

I'm looking for a KeyValuePair class in Java. Since java.util heavily uses interfaces there is no concrete implementation provided, only the Map.Entry interface. Is there some canonical ...
10
votes
1answer
2k views

Cassandra time series data

We are looking at using Cassandra to store a stream of information coming from various sources. One issue we are facing is the best way to query between two dates. For example we will need to ...
9
votes
5answers
381 views

Why can't I compare a KeyValuePair<TKey, TValue> with default

In .Net 2.5 I can usually get an equality comparison (==) between a value and its type default if (myString == default(string)) However I get the following exception when I try to run an equality ...
9
votes
6answers
3k views

How to remove elements from a generic list while iterating over it?

I am looking for a better 'pattern' for working with a list of elements which each need processed and then depending on the outcome are removed from the list. You can't use .Remove(element) inside a ...
7
votes
7answers
4k views

Is there a lightweight, embeddable, key/value database? (something like diet couchdb)

I was wondering if there was a lightweight, embeddable, key/value database out there. Something like a lightweight Couchdb (RESTful, key/value, etc) where you just send it the key and it responds ...
5
votes
1answer
2k views

Create a Dictionary in xaml?

Pseudo example: <Window> <Window.Tag> <x:Dictionary KeyType="{x:Type sys:String}" ValueType="{x:Type sys:Int32}"> <sys:DictionaryEntry Entry="{sys:DictionaryEntry ...
5
votes
5answers
762 views

Is there a library or framework for setting preferences from within an iPhone application?

Using the Settings.app on the iPhone isn't that hard. In fact Xcode does the most of the work for you. Just add the Settings.bundle to your project and there you have it for nearly no cost. At the ...
4
votes
5answers
225 views

Dictionary or List

I have strings associated with some double value. I need to be able to sort them easily by the value and to easily get the strings as some kind of list. There could be 100k+ of those pairs. So, my ...
4
votes
5answers
3k views

Get Index for a keyvaluepar in dictionary c# based in the value

i would like to know if there exist some property or method to get the index of an specific value, i now that the thing has to be in the other way but i have this situation and i don't want to change ...
4
votes
2answers
375 views

Parsing plain text to some structured object

I am working on parsing plain text and converting it to key-value pairs. For example, plain text: some_uninteresting_thing key1 valueA, some_uninteresting_thing valueB key2 valueD key3 ...
3
votes
2answers
176 views

Display a single object with a DataGridView.DataSource

I'm used to display multiple objects with a DataGridView control in the following format ID Name Address [...] ID1 Name1 123 street [...] ID2 Name2 456 street [...] ...
3
votes
2answers
499 views

How to pass generic KeyValuePair<Tkey,TValue> to a WebMethod?

[WebMethod] public void Test(KeyValuePair<string,string> details) { } I have defined the above web-method. The KeyValuePair is defined in ...
2
votes
2answers
70 views

C# - Convert Int to KeyValue to String

I have a value of key in file. How I can convert this value to string representing this key? When I have an event: void text_KeyDown(Object sender, KeyEventArgs e) { ...
2
votes
3answers
148 views

What NoSQL solution to choose for domain names database?

I have a project that stores several millions of domain names in database and perform search requests to find if domain is present in DB. The only operation I need - check if given value exists. No ...
2
votes
2answers
243 views

Help me pick a key/value store

Hate to ask others to do my research for me, but perhaps there's a kind soul who knows the answer off the top of his head: I need a key/value store with the following characteristics: Distributed ...
2
votes
2answers
159 views

Architecture for search engine based on distributed key/value store?

Is anyone aware of any links, papers, presentations, or blog posts that describe a large-scale full-text search engine built upon a distributed key/value store? I'm particularly interested in the ...
2
votes
4answers
251 views

Grouping KeyValue pairs to Dictionary

I have the following code : using System.Collections.Generic; public class Test { static void Main() { var items = new List<KeyValuePair<int, User>> ...
2
votes
7answers
725 views

Are there any stable and production quality nosql datastores?

Are there are production quality nosql stores that I can use on a production system. I have looked at cassandra, tokyodb, couchdb etc but none of them seem to be ready for deployments on production ...
2
votes
2answers
391 views

A UML way to describe a key/value datastore?

I'm currently writing the documentation for a database using berkeleyDB. I'd like to draw UML diagram describing the keys and the values of the datastores. Is there a 'standard' way to describe this ...
1
vote
1answer
236 views

KeyEventArgs.KeyData, KeyEventArgs.KeyCode and KeyEventArgs.KeyValue

I have question about the KeyEventArgs's KeyCode and KeyData and KeyValue. KeyCode and Keydata are Keys type, but I don't know what the difference between them is. For KeyValue, I don't know what it ...
1
vote
1answer
236 views

regex for delimited key-value pairs in a string?

I have a string of key-value pairs that are delimited by a character in this format: key1=value2&key2=value2& ... &keyN=valueN Right now I'm unsafely assuming every two matches to be a ...
1
vote
2answers
287 views

Replacing key/value in NSDictionary

If I have a dictionary with the following key/value "foo"/"bar" and declared [dictionary setObject:@"baz" forKey:@"foo"]; would this replace the current key value pair with "foo"/"baz" and delete ...
1
vote
2answers
99 views

Remove the '-' dividers in JSON keys in Ruby

I'm trying to read some JSON data from the Tumblr API. I'm using the Hashie gem to read the values as object properties. This should make reading easier/cleaner. it turns something like this: ...
1
vote
3answers
287 views

Efficient way to look up value based on a key in php

With a list of around 100,000 key/value pairs (both string, mostly around 5-20 characters each) I am looking for a way to efficiently find the value for a given key. This needs to be done in a php ...
1
vote
3answers
224 views

hash_map is saving each key/val pair even when keys are equal

Hey guys, I am using a hash_map to relate strings to one another, with this code: #include <string> #include <iostream> #include <hash_map> using namespace std; using namespace ...
1
vote
1answer
276 views

Grouping Nested KeyValue pairs to Dictionary

I have the following code: using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; public class Test { static void Main() { var ...
1
vote
1answer
454 views

How to find the median value of NSNumbers in an NSArray?

I'm trying to calculate the median of a (small) set of NSNumbers in an NSArray. Every object in the NSArray is a NSNumber. Here is what I'm trying, but it's not working: NSNumber *median = ...
1
vote
2answers
410 views

How to assign/add item(s) to a Dictionary using the key index?

We wanted to assign/add an item to a Dictionary using the key index, like this: Dictionary<string, object> dict = new Dictionary<string, object>(); dict["key"] = dict["key"] ?? "object"; ...
1
vote
3answers
3k views

Java properties: Is there a way a key can include a blank character?

we are getting properties, we can not influence, out of a database and want to access them by a key/value mapping. We are facing the problem, that one of the property keys includes a blank character. ...
1
vote
1answer
261 views

Search/Queries in Collections (Java)

I've created many Geodata objects (name,postalCode,lat,lon). Now I want to put them into a collection to search for different entries later. Everything should happen objectOriented/in-memory, so ...
1
vote
4answers
392 views

best way to store .net session data

I'm investigating for a free, high available, high performance solution for caching or storing .net session data (for a high traffic website). I don't want to use a db (db is the bottleneck on traffic ...
1
vote
2answers
614 views

How to “convert” a Dictionary into a sequence in F#?

How do I "convert" a Dictionary into a sequence so that I can sort by key value? let results = new Dictionary() results.Add("George", 10) results.Add("Peter", 5) results.Add("Jimmy", 9) ...
1
vote
4answers
279 views

What's the best way to manage real-time configuration variables with Ruby on Rails?

I'm aware of YAML and plugins like rails-settings, but neither of these is useful for configuration settings that need to be changed in real time. For instance, say I have ...
1
vote
3answers
1k views

What is the C interface to Lua for accessing a table's key/value pairs?

In Lua, using the C interface, given a table, how do I iterate through the table's key/value pairs? Also, if some table table members are added using arrays, do I need a separate loop to iterate ...
0
votes
1answer
74 views

update values in a dictionary with new fields obtained from a wmi query vb.net

EDIT I still can't assign the process the username of the session id that is associated with it. This is the code i use to retrieve user details: Public Sub GetUsers() Using server As ...
0
votes
1answer
52 views

How to deserialzie List of KeyValuePair

My Class implements IXmlSerializable and has a property like this: public List<KeyValuePair<int, bool>> exportList { get { return _exportList; } set { _exportList ...
0
votes
3answers
44 views

Check number of pairs in KeyValuePair list

I have this thing here var filelist = new List< KeyValuePair< string, string>>(); and I'd like to know if there's any command like filelist.Amount or something that checks the number of ...
0
votes
4answers
71 views

How to find out max value with the key from a hash in perl where keys hold multiple values

Hi i am trying to find out maximum value in a hash and corresponding key to that maximum value. my hash looks like %hash = ( bob => "4.9", gita =>"3.9 , 6,8", diu => "3.0", ); ...
0
votes
2answers
99 views

In Perl, how can I read a file and save entire content of file in %hash in the form of key and values?

Hi i am new to Perl programming. I am trying to read a .csv file which has 2 fields separated by comma. I want to put all the data of a file into a hash in the form of key and its value. The input ...
0
votes
3answers
72 views

best way to receive a list of objects from list of KeyValuePair?

I have a list of KeyValuePairs and I want to filter it based on the key value so eventually I will get a list of values which is filtered (meaning - will not contain all the values that were in the ...
0
votes
1answer
258 views

How to select specific item from BindingList<KeyValuePair<string, string>> in C#?

BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>(); Code above stores around 10-30 objects as KeyValuePair<string, ...
0
votes
1answer
192 views

How to get listBox selected item as KeyValuePair<string, string> in C#?

ListBox object is binded with BindingList<KeyValuePair<string, string>> On SelectionChanged event I need to get selected item as KeyValuePair<string, string> Following code gives ...
0
votes
3answers
109 views

LINQ Query - Selecting a key based upon the value having a property that matches a string?

I have an IDictionary I need to select the first Foo where the Bar.Prop1 matches a string value. public class Foo { } public class Bar { public String Prop1 { get; set; } } right now I have ...
0
votes
0answers
142 views

Building a Django dynamic form from a keyvalue list

I'm looking for some examples/ideas to create a dynamic web form from a csvlist of key value pairs. More specifically the idea is to build a dynamic form from a csv list - iow - parse/unpack the list ...
0
votes
1answer
57 views

Iterating KeyValueCollection?

I have a function which return in the form of a KeyValueCollection, How to iterate it to get the key and value in jsp... Any suggestion????
0
votes
1answer
435 views

ASP.NET/MVC with HTML 5 local storage key/value pair

We are developing several asp.net MVC applications that need to exist in both a connected/disconnected state. Out of the several connection strategies available (Google Gears, Microsoft Sync, etc) ...
0
votes
3answers
240 views

In C#, best approach to load key value pairs in app memory from the database

In our .net application we need to load some data (key/value pairs) from the database and use it through out the application. We don't want to hit the database for each request (key) to get the value ...
0
votes
4answers
95 views

Java Development: Nested Array Equivalent to This XML

I want to create multiple key/value arrays in Java that will sit in a master array. I then want to be able to loop through the master array and grab the key/value of each array. I want the array to ...
0
votes
1answer
98 views

Typesafe keyvaluepair enum

I have a public property on a custom control exposed like this: public IList<KeyValuePair<ControlTypes, int>> ControlCollection {get;set;} With ControlType as type enum like this: ...

1 2