0
votes
2answers
37 views

Performance tests with hibernate and jdbc [closed]

Good afternoon, I'm developing my serach on university a comparison between Hibernate and JDBC, and a major focus of the work is on performance. One question that I am being charged too is related ...
0
votes
0answers
20 views

Which one performance better when I use jedis , set(byte[], byte[]) or set(String, String)?

On my laptop, set String directly is always proformace better than set byte[], even with Serialization mechanism when I test with Jedis. I am confused that if String should be serialized when call ...
1
vote
3answers
63 views

Java code efficiency, storing data versus method calls

I have a question on code efficiency in java. I currently have a method that looks similar to the following public class Response extends SuperResponse { private Object ConfigureResponse = null; ...
1
vote
1answer
27 views

Writing to an excel file - Performance Analysis

So after doing some research on writing to an Excel file i have found that both the Apache API and JExcel could cause performance issues. At the moment my application outputs the information i want to ...
0
votes
3answers
54 views

Java: Any way to speed up this replacer?

My virtualkeyboard is nearly done, i am trying to increase performance. I want to aask you. That is here any better / faster solution for replacing characters in buttons. getButtons() => List< ...
9
votes
0answers
161 views

Why is there a huge performance difference between 32 and 64 bit JDK? [duplicate]

So I've been doing Project Euler, and I found two ways to solve Problem 57. However, there seems to be a huge difference in performance between using a 32bit JDK and a 64bit JDK. public static int ...
1
vote
4answers
60 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
2answers
49 views

java benchmarking : More time for lesser input

After running some benchmarking on 2 regex library implementations, below is the results that we got: inputs automaton regex 50 343ms 210ms 100 48ms 187ms 200 ...
1
vote
2answers
25 views

Uploading JPG image to Server in Android

I have a curious question. When decode a JPG image in Bitmap, it take very high memory as JPG is a compressed format.So for 0.5 MB JPG image, bitmap is almost 4 MB. My question is if I want to upload ...
0
votes
3answers
30 views

treemap vs arraylist - perfomance & resources while iterating/adding/editing values

Talking about performance and resources. Which one is faster and needs less resources when adding and editing values, ArrayList or TreeMap? Or is there any type of data that can beat these two? (it ...
0
votes
3answers
50 views

Using currentTimeMillis to measure elapsed time is returning 0

I am somewhat new to Java/Android programming and I am just trying to do a simple time measure to calculate the elapsed time of a method that I am calling. Right now my code looks like this: ...
0
votes
0answers
48 views

Find sub image in a large image using JAVA and FAST algorithm

I am very new to image processing and my requirement is to detect whehter the given large image consist the given subimage (small image) using Java and FAST algorithm. I have found the java lib ...
1
vote
1answer
40 views

How do I read an entire directory of text files into memory quickly in Java?

I am running a Java program which reads 1-2000000 text files and does a simple operation for each of them and writes them back to disk. On my Windows laptop this takes 8 minutes for operation on ...
10
votes
2answers
131 views

Monitor non-heap memory usage of a JVM

We usually deal with OutOfMemoryError problems because of heap or permgen size configuration problem. But all the JVM memory is not permgen or heap. As far as I understand, it can also be related to ...
1
vote
2answers
67 views

Check string for a given alphabet

I need to check if a string (word, no whitespaces) has any letters of a given alphabet. String A: apple String B: bed Alphabet: a b c d e f I want to compare efficiently the string with the ...
0
votes
0answers
23 views

CPU intensive and slow XML parsing in Java 7 due to Xalan issue in SAX2DOM

We upgraded from Java 6 to Java 7 and suddenly see a significant performance issue in our application related to XML parsing. Almost all the time when I do the tread dump, I can see the following near ...
0
votes
1answer
11 views

JAVA Smart Card client authentication - slow “init keystore”

I'm developing an application that requires client authentication through smart-card. The client performs a mutual SSL authentication using the smart-card. There's an efficiency issue: the client ...
3
votes
3answers
54 views

Java Generics : Type Inference Performance

I was wondering what the performance penalty is for generic type inference in Java 7. Is the "generics method type inference" cost (i.e., this) different from the "generics assignment type inference" ...
0
votes
0answers
56 views
+100

Inertial movement of drag and drop

I'm working on a Drag and Drop code, so far it works fine, but I need it to be able to recognize and act based on the speed and direction of the finger swipe (keep moving even if finger is already up, ...
2
votes
3answers
81 views

java full gc taking too long

I have a Java client which consumes a large amount of data from a server. If the client does not keep up with the data stream at a fast enough rate, the server disconnects the socket connection. My ...
-2
votes
1answer
81 views

What 's Big O notation on this specific code? [closed]

I want to know Big O notation and Big Omega notation (worst case, best case) of this code It is a sorting algorithm and my guess is that it has a O(n) and Omega(n) : public static void swap(int[] ...
0
votes
1answer
33 views

spring @transactional preformance

lets say i have a service bean that has 2 methods: @Transactional(readonly=false) public void doSomething() @Transactional(readonly=true) public void doSomethingReadOnly() and 2 variations of a ...
1
vote
4answers
76 views

how can I clear a bitmap memory in real time?

I create 14 Bitmap objects like this: bmp[0]=BitmapFactory.decodeResource(getResources(), R.drawable.a0000); bmp[1]=BitmapFactory.decodeResource(getResources(), R.drawable.a0001); ...
2
votes
2answers
65 views

Need to fasten my Java code

I am a fairly new java programmer and trying to solve problems from the Spoj. But the problem for me is not the actual difficulty of the algorithm; it is the performance of my Java code as it usually ...
6
votes
1answer
79 views

How is jProfiler handling JIT?

I use jProfiler extensively and it is a great tool but I am wondering how is jProfiler handling the effects of the JIT compilation. Am I able to observe for example method inlining? If a method is ...
0
votes
4answers
83 views

Creating an object of a pre-implemented java class is much faster than creating a custom object? [closed]

class DummyInteger { private int i; public DummyInteger(int i) { this.i = i; } public int getI() { return i; } } long start = System.nanoTime(); DummyInteger n = ...
-7
votes
4answers
59 views

What is the runtime complexity of the following method considering the simple statements? [closed]

Here is the code in java: void test(int n) { int i, j; ///first loop for ( i = 1; i <= n; i ++) { //second loop for (j ...
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 ...
1
vote
1answer
43 views

Redis hash very slow writing speed

I'm facing a very strange issue : i get really crappy writing speeds when using redis (in a ideal world the writing speed should be approaching the writing speed on RAM). Here is my benchmark : ...
0
votes
4answers
102 views

Program slowing down due to recursion

I'm trying to write a program that adds every single file and folder name on my C: drive to an ArrayList. The code works fine, but because of the massive amount of recursion, it gets painfully slow. ...
0
votes
1answer
36 views

Tuning JVM Args for CloudBees App

I just read the CloudBees developer doc on adjusting PermGen but was wondering if they offer anything else for tuning heap, GC and the JVM in general. I usually tune my Tomcat apps extensively and ...
12
votes
3answers
301 views

Degrading performance when increasing number of cores

My mac is armed with 16 cores. System.out.println(Runtime.getRuntime().availableProcessors()); //16 I'm running the code below to see the effectiveness of utilizing my cores. The thread ...
0
votes
2answers
52 views

Java Heaps and GC on Multi-Processor machines?

How does Java deal with GC and Heap Allocation on multi-processor machines? In the reading I've done, there doesn't seem to be any difference in the algorithms used between single and multi-processor ...
-2
votes
0answers
62 views

Difference between using generic functions and using if (a == null) [closed]

What is the difference between using a generic function, and when using a simple if statement in JSP to determine a null? eg: public static String nn(String a) { return nn(a, ""); } ...
-2
votes
1answer
132 views

Why is C++ heap allocation so slow compared to Java's heap allocation? [closed]

I ran small tests in Java and C++, creating tons of very small objects (no class members, nothing in constructors) and Java is clearly faster (I mean C++ seems to be really slow). I bet this has to do ...
-2
votes
1answer
28 views

Load data in app [closed]

We have an app about some exams related stuff and we got stuck on how to load the app with questions as questions containing images and sometime only text. So my question is what data structure we ...
-1
votes
0answers
48 views

What Java IDE do you use? What do you think is easier to use? [closed]

I know some Java IDE, like eclipse, netbeans, bluej, but in your opinion and experience, which one can I get a better performance? Thank you
1
vote
1answer
58 views

JSF + primefaces calling getter way too much times

I read all answers on this topic (not only) on SO, but none of this solves my problem. I have datatable: <p:dataTable value="#{reportBean.reportData.rows}" ...
0
votes
3answers
43 views

How can I call to a button Event Listener. even is not clicked?

I have button event listener with some actions inside which work good. I want to execute that event listener even I don't press that button I mean like execute a normal method. Because I don't want to ...
0
votes
0answers
54 views

Reducing network roundtrips using Neo4j Java REST wrapper

Context I'm running a Neo4j instance as a (remote) server. Periodically, I need to send a batch of new nodes to the database -- let's say about 5000 per batch, with 5-10 properties per node. I'm ...
-2
votes
3answers
67 views

Initializing Strings using New or not? [duplicate]

I wanted to know if it is the same to do this, in terms of optimization and performance: public class Test { public static void main(String[] args) { String option1 = "Text 1"; ...
1
vote
0answers
51 views

difference in mongodb update/upsert performance between collections and capped collections

I have been playing a bit with mongoDb to check its performance. I have created a little test in Java with one small collection: public class ClientWord { @Id private ObjectId id; ...
0
votes
1answer
47 views

Tile Searching (Nested For Loops)

I'm searching over a tile array so basically have x and y - say for example a 10 by 10 grid. Currently I am using a nested for loop over x and y, but I am wondering since I don't know much about ...
0
votes
1answer
24 views

Mule default thread settings

I'm using Mule 3.3.1. I've found articles discussing configuration of thread usage (maxThreadsActive, etc.). However, most of them say something like "the default settings are probably good enough" ...
5
votes
3answers
70 views

How to implement tire map in java?

I want a tire map like blow: Map<String,Object> map = new TireMap(); map.put("com","1"); map.put("com.aa","2"); map.put("com.aa.bb","3"); map.get("com");// return ["1","2","3"] ...
-3
votes
0answers
36 views

Java2D Performance on Mac is bad [closed]

I get about 300-400 fps for a small game-thing on my Windows computer, but trying it on my mac results in 60-70 fps results. This is actually really bad (I'm rendering about 2 images). How do I fix? ...
5
votes
3answers
77 views

Java Garbage Collection Induced Latency affecting Performance

I'm noticing a weird phenomenon in my application. I store Objects in a Hashmap after submitting them to a server and remove them when the response arrives. I recently noticed very slow performance ...
5
votes
4answers
99 views

At which length is a String key of a HashMap considered bad-practice?

I try to pay attention to good performance and clean code all the time. I'm having difficulties trying to grasp whether it's sane to have a HashMap with keys of 150 characters. Is there an ...
0
votes
0answers
65 views

OutOfMemoryError: Java heap space for saving into HashMap

JAVA RCP application, Windows 7 32bit, jdk1.6.0_21, Eclipse Indigo, We have two revisions of same XML. Both are unmarshalled to tree. Then revisions are combined to make a superset Tree. On ...
0
votes
0answers
22 views

when spring webflow serialize objects

We have an app based on spring webflow, according to the Spring manual, we need to make every class we put in flowScope serializable. and in our app, basically almost every class need to be ...

1 2 3 4 5 68