7
votes
1answer
155 views

Speeding up array lookup after traversing?

I have a 123MB big intarray, and it is basically used like this: private static int[] data = new int[32487834]; static int eval(int[] c) { int p = data[c[0]]; p = data[p + c[1]]; p = ...
0
votes
1answer
65 views

Search User By PK vs. Username Performance

I'm defining a custom route for SEO and trying to decide whether the URL should look like site.com/user/userid/username vs site.com/user/username where user is the controller and the other two are ...
2
votes
1answer
65 views

check for a streaming item in a huge list

This is the problem we are trying to solve. We are dealing with huge streaming data of a large number of items. We also have a predefined list of items. We need to check if each item in a stream ...
0
votes
2answers
126 views

Data structure for One column list for storing addresses , better lookup O(1) in C++

I am a beginner in C++. I need to store list of addresses that give a very good performance in terms of lookup and adding new entries. I first want to see if the address tis already present in the ...
3
votes
2answers
490 views

Fast read-only embedded “database”?

I'm looking to distribute some information to different machines for efficient and extremely fast access without any network overhead. The data exists in a relational schema, and it is a requirement ...
2
votes
4answers
892 views

A simpler data structure for key-value lookup?

For a small set of key/value pairs (default 2, max 5), a Dictionary<TKey, TValue> seems like overkill. Is there a much simpler data structure that could be used in my case ? I'm caching computed ...
1
vote
2answers
323 views

Create perfect hash for millions of items - result just needs to be “exists or not”

Does anyone know of a good library (windows) that will allow me to create a static (not runtime) perfect hash for millions of items (probably about 10m)? I essentially have millions of sets of ...
5
votes
5answers
524 views

Find-or-insert with only one lookup in c# dictionary

I'm a former C++/STL programmer trying to code a fast marching algorithm using c#/.NET technology... I'm searching for an equivalent of STL method "map::insert" that insert a value at given key if ...
0
votes
2answers
1k views

A lookup table, Store in MySQL or PHP

I have a question regarding to the performance between a lookup table store in MySQL(standalone table) or PHP(array), so here is my data (in array form) $users = array( array(name => 'a', address ...
3
votes
2answers
622 views

Fast look up if word exists in dictionary text file

I have a large text file (~10mb) that has more or less every dictionary in a specific language, and each word is new line deliminated. I want to do a really fast lookup to see if a word exists in a ...
2
votes
3answers
2k views

@EJB injection vs lookup - performance issue

I have a question related with possible performance issue while using @EJB annotation. Imagine following scenario public class MyBean1 implements MyBean1Remote{ @EJB private MyBean2Remote myBean2; ...
1
vote
1answer
807 views

Delphi, PGDac vs Zeos, Fetch, Lookup?

I used Zeos to test to know: is ZTable uses fetch technics, or not? May in the future we migrate our lesser system to PGSQL, and this used now "Table" components (as BDE, but it have an SQL-like ...
2
votes
5answers
903 views

Choosing a Data structure for very large data

I have x (millions) positive integers, where their values can be as big as allowed (+2,147,483,647). Assuming they are unique, what is the best way to store them for a lookup intensive program. So ...
3
votes
5answers
467 views

In python, how can you retrieve a key from a dictionary?

I have a hashable identifier for putting things in a dictionary: class identifier(): def __init__(self, d): self.my_dict = d self.my_frozenset = frozenset(d.items()) def ...
0
votes
3answers
2k views

Efficient HashMap retrieval with key composite key (build from 2 enums)

I have a 2 enum values representing a mapping to object which I'm (currently) modeling with a HashMap with the 2 enums values are used as key and the object is the value. This is inefficient because ...
4
votes
5answers
420 views

Speed of looking up .NET Dictionary value by key?

I have a dictionary of 10000 Product/Colour/Size combinations which I have created with something like: AllRecords = DB.ProductColourSizes _ .ToDictionary(function(b) ...
1
vote
2answers
111 views

.NET values lookup

I have a feeling of missing something obvious. UDP receiver application. It holds a collection of valid UDP sender IPs - only guys with IP on that list will be considered. Since that list must be ...
5
votes
12answers
1k views

Optimizing for speed - 4 dimensional array lookup in C

I have a fitness function that is scoring the values on an int array based on data that lies on a 4D array. The profiler says this function is using 80% of CPU time (it needs to be called several ...
2
votes
6answers
644 views

Counting sentences: Database (like h2) vs. Lucene vs.?

I am doing some linguistic research that depends on being able to query a corpus of 100 million sentences. The information I need from that corpus is along the lines: how many sentences had "john" as ...
0
votes
5answers
194 views

Fastest way to lookup keywords. Any language, any system

Daily I have 5 million or so unique keywords with an impression count for each one. I want to be able to look these keywords up by certain words so for instance if I have "ipod nano 4GB" I want to be ...
4
votes
5answers
607 views

Additional hash lookup using 'exists'?

I sometimes access a hash like this: if(exists $ids{$name}){ $id = $ids{$name}; } Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...
9
votes
8answers
8k views

Which is faster to find an item in a hashtable or in a sorted list?

Which is faster to find an item in a hashtable or in a sorted list?
4
votes
4answers
1k views

Cache lookup performance

We have a big winforms C# application, that's basically a frontend for some databases (CRUD stuff) and I'm trying to implement some in memory cache for business objects. Something like: ...