1
vote
4answers
54 views

Which collection should I use to check if a value is in the collection of 100K elements?

I am new to Java and I do not know the differences between java collection implementations. I have to process up to 100K records of imported data. There might be duplicates on that list. I have to ...
0
votes
3answers
92 views

Lightweight Map implementation Java (little memory overhead)

I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
0
votes
2answers
62 views

process bunch of string effective

I need to read some data from a file in chuck of 128M, and then for each line, I will do some processing, naive way to do is using split to convert the string into collection of lines and then process ...
1
vote
4answers
116 views

Best searchable collection strategy for performance?

I've got a collection of objects with the following interface: public IEntity { public string Key1 { get; set; } public string Key2 { get; set; } ... some other properties } and am ...
3
votes
3answers
81 views

Difference between sorted and sortBy

According to doc for List def sorted[B >: A](implicit ord: math.Ordering[B]): List[A] Sorts this list according to an Ordering. def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): ...
0
votes
3answers
52 views

Which collection has the Best access time to find item.Property from

I should design a solution for best performance for searching through items from that collection. The problem is: I have an type: class MyType { public int Id { get; set; } public int ...
1
vote
1answer
75 views

Efficent C# sorted collection of fixed number of mutable objects

I'm trying to think about efficient ways of maintaining collection of small fixed finite number of objects (few dozens), that will change very frequently (at least few times per second up to few dozen ...
0
votes
2answers
25 views

Performant filtering for a range from in memory data

I have a group of complex XML objects that is Store Location data and attributes Some stores have 50 Store Locations, some stores have 1500 Store Locations and some have 20,000 Store Locations. I ...
0
votes
5answers
45 views

Inserting an element at the beginning of Vector

I am implementing an Android App which receives a json array of Strings from a webservice. This array can be pretty large (more than 500 entries). I am parsing this data into a Vector object. In the ...
11
votes
2answers
114 views

Unexpected Performance Penalty in Java

I implemented a GapBuffer list in Java, and I can't figure out why it's getting such a performance penalty. Similar code written in C# behaves as expected: inserting to the middle of the list is much ...
1
vote
1answer
47 views

OutOfmemory error when creating ArrayBlockingQueue with Integer.MAX_VALUE entries

I have been using LinkedBlockingQueue, and recently changed this to ArrayBlockingQueue due to slow insertion performance. I got a significant performance improvement after that. However, my code ...
0
votes
1answer
62 views

Best collection to use for speed in WPF GUI

I have a listview that contains a list of 'rows', which in term, contains a list of 'columns'. For now, I use List for both rows and columns (i.e. I have a List and it the Rows objet, I have a List, ...
0
votes
3answers
41 views

Filtering out values from a list of object in a List

I have an IEnumerable collection of UnitGroup: IEnumerable<UnitGroup>, class UnitGroup { string key { get; set; } List<UnitType> NameList { get; ...
0
votes
2answers
610 views

Difference between ArrayList and LinkedList in Java - the whys for performance

I thought I understood the difference between ArrayList and LinkedList theoretically pretty well. However, its the first time, I put it to a little test, and the tests came out, well different to my ...
1
vote
5answers
190 views

ArrayList and HashSet insert performance test result confuse me

i wirte a class to test the insert performance between arraylist and hashset,as i expect ,the hashset insert performance will be much better than arraylist(maybe the book deceived me),but the test ...
0
votes
2answers
126 views

A better performing way retrieving select attributes Collections of Large Objects in Java

Is there a method where I can iterate a Collection and only retrieve just a subset of attributes without loading/unloading the each of the full object to cache? 'Cos it seems like a waste to ...
0
votes
1answer
83 views

foreach loop takes too long in SharePoint 2010

I'm trying to retrieve synonyms from SharePoint 2010, and my code has the following issue: it loops through a keywordCollection that has no indexer. Doing a foreach takes too long, because ...
-6
votes
2answers
95 views

Does Java JIT compiler sacrifice performance to favor Collections?

Consider the two following code samples. All benchmarking is done outside of the container being used to calculate an average of the sampled execution times. On my machine, running Windows 7 and JDK ...
0
votes
4answers
137 views

Fast way to iterate through a set and remove items meeting certain criteria

So I've got a program that contains a bunch of records in a Set. The set could have a few items or potentially hundreds of thousands. One bit of data each record has is a timestamp. I need to ...
65
votes
5answers
5k views

Given that HashMaps in jdk1.6 and above cause problems with multi=threading, how should I fix my code

I recently raised a question in stackoverflow, then found the answer. The initial question was What mechanisms other than mutexs or garbage collection can slow my multi-threaded java program? I ...
4
votes
7answers
105 views

Are DB hits costlier than accessing collection in java?

Just implemented a design where i had cached some data in hashmap and retrieved data from it instead querying the same data from DB. Is my thinking correct ?
1
vote
2answers
466 views

vb6 adodb recordset manipulation

i am working with a vbaccelerators' sgrid and need to load records as fast as i can. am want ti use a recordset (am already using a collection) to store loaded records so that i effect any changes to ...
1
vote
3answers
130 views

Simple List<string> vs IEnumarble<string> Performance issues

I've tested List<string> vs IEnumerable<string> iterations with for and foreach loops , is it possible that the List is much faster ? these are 2 of few links I could find that are ...
0
votes
2answers
61 views

Collection that lets access item by key but doesn't require duplicate checking on addition?

I'm asking for something that's a bit weird, but here is my requirement (which is all a bit computation intensive, which I couldn't find anywhere so far).. I need a collection of <TKey, TValue> ...
7
votes
4answers
247 views

Data structure with O(1) lookup time which will allow duplicates [closed]

My goal is to create a data structure implementing IList<T> interface which will achieve O(1) element lookup time by compromising memory. Background As you know all array based IList<T> ...
0
votes
1answer
136 views

Why is removing by index from an IList performing so much worse than removing by item from an ISet?

Edit: I will add some benchmark results. To about a 1000 - 5000 items in the list, IList and RemoveAt beats ISet and Remove, but that's not something to worry about since the differences are marginal. ...
3
votes
3answers
167 views

Ideal Java Data Structure for Streaming data

I had a specific use case in mind but was not able to figure out the right data structure to use. I have one thread which keeps streaming objects into a HashMap. Something similar to market data ...
1
vote
4answers
153 views

How can I improve performance of string processing with less memory?

I'm implementing this in Java. Symbol file Store data file 1\item1 10\storename1 10\item20 15\storename6 11\item6 15\storename9 15\item14 1\storename250 5\item5 ...
1
vote
1answer
308 views

ArrayListMultimap Vs ArrayList , which have the high performance?

In my application, I'm using ArrayList(java.util) for storing bulk of customized data and processing. But it causes the process delay when use continuously in a scheduled manner. So I would like to ...
3
votes
1answer
201 views

Small sized collections from C5 Generic Collection Library are comparatively very slow - can anything be done?

I've recently been testing C5 collections in C# and I'm loving their functionality. For large collections the performance seems on par with the generic counterparts. For small collections however they ...
4
votes
2answers
196 views

What is the fastest java collection for retrieving large numbers of DTOs?

I'm returning large numbers of collections from a DTO object and was wondering if anyone could point me in right direction. Any type of collection will do, but I don't know which one is best suited ...
3
votes
6answers
3k views

A fast way to find unique values in the list

Given a list of KeyValuePairs, where each pair has a getValue() method, what would be the fastest way to obtain a List (or Set) of unique Values? All of the below produce acceptable result. u1 seems ...
0
votes
1answer
80 views

Collection efficiency [closed]

I am concerning that I am developing an application where I need to just validate the data from the hashtables. I have 8 hash tables and I get the data from them and verify it. All 8 hashtables has ...
10
votes
1answer
190 views

Recommended data structure for 1 million+ ordered collection in .NET 3.5

My data structures knowledge is way rusty, and to be honest it was never my strongest point. Right now we're about to build a queue-like component that has the following requirements: Has to be ...
6
votes
2answers
305 views

Why fill() , copy() ,reverse() and shuffle() of Collections in java is implemented this way

According to javadoc... Collections.fill() is written as below : public static <T> void fill(List<? super T> list, T obj) { int size = list.size(); if (size < ...
4
votes
5answers
564 views

Analyzing and avoiding a Full GC in Java

I'm working on a time critical application with a time cap of 40 ms per iteration. If the time cap is exceeded just once, the application is terminated and game over. The application itself has no ...
7
votes
5answers
275 views

Java object which takes the least memory

This is a silly question, but here it goes. I have a multithreaded program and a "global" Collection of unique elements. I rejected synchronized Set implementations due to performance, for the ...
7
votes
2answers
229 views

Adding to a large Java collection, performance bottleneck

I am trying to add a million objects into a list. The time it takes to do it, is longer than i have patience to wait for. It also seems to take progressively longer to carry on with each step. ...
5
votes
1answer
384 views

How to get the closest item to my key from a SortedDictionary?

Currently I'm using a binary search over a SortedList<T,U> for a specific number, and if it doesn't exist I get the closest lower-bound key-item instead. I saw that it was rather slow in ...
5
votes
4answers
434 views

What does a hashset do with memory when initializing a collection?

I stumbled upon the following problem. I want a hashset with all numbers from 1 to 100.000.000. I tried the following code: var mySet = new HashSet<int>(); for (var k = 1; k <= 100000000; ...
0
votes
2answers
99 views

A collection of n linked elements in Java

I need to store the following line items on a receipt: quantity, description, upc, and price. What is the best method in Java to store these? I need to print them to an output at some point by line, ...
2
votes
6answers
338 views

What is the best data structure for a collection of words?

I have a collection of about 170,000 words and I perform a number of operations on them. The most common are: StartsWith, EndsWith and Contains. I also do a lot of length checking. I originally ...
0
votes
1answer
548 views

Iterating through a Scripting.Dictionary/Collection object

I have a project that's been changed and modified in bits and pieces over the past few years, and much from one code module to the next is non-standardized. In some cases, I have a ...
0
votes
1answer
231 views

IMDB (In Memory Database) Vs Java Collections

My question is: Is there any way to implement database kind of functionality (which In Memory database provides) with java.util.collections (ArrayList/HashMap/3rd party LIB etc...) Let me put in ...
7
votes
2answers
276 views

Why are some functions in the Seq module optimized whilst others were not in F#?

This is a follow up to my previous question regarding the Seq module's iter and map functions being much slower compared to the Array and List module equivalents. Looking at the source, I can see ...
0
votes
2answers
235 views

determining differences between generic lists

There are probably 10 duplicates of this question but I would like to know if there is a better way than I am currently doing this. This is a small example that I'm using to show how I'm determining ...
0
votes
1answer
56 views

Smallest Collection for Serialization

I have a Java app, (Fat Client, Server, Database). All server method calls return a Vector (the server code was originally built years ago, and has been left the same for consistency). The Vector ...
4
votes
4answers
263 views

Are foreach and the use of collections slow?

I'm refactoring my app to make it faster. I was looking for tips on doing so, and found this statement: "ForEach can simplify the code in a For loop but it is a heavy object and is slower than a loop ...
2
votes
6answers
1k views

Smallest array element in Java

I have an Integer array, value[]. It may be of any length. I need to find the smallest number. I am working on a problem in interview street. I am getting an error as my Time Exceeded. I need to ...
2
votes
5answers
862 views

How to delete duplicate/aggregate rows faster in a file using Java (no DB)

I have a 2GB big text file, it has 5 columns delimited by tab. A row will be called duplicate only if 4 out of 5 columns matches. Right now, I am doing dduping by first loading each coloumn in ...

1 2 3