2,306 reputation
726
bio website
location
age
visits member for 3 years
seen 2 hours ago
stats profile views 120

2h
comment Hibernate Error: a different object with the same identifier value was already associated with the session
Glad you solved the issue.
May
13
awarded  Yearling
May
12
awarded  Notable Question
Apr
30
comment Hibernate Error: a different object with the same identifier value was already associated with the session
Does C's primary key have any ID generation strategy? Like a sequence-generator or something similar?
Apr
30
comment Can't install jdk on Fedora with yum nor with rpm
I presume there was something residual from the previous openjdk versions, which might have been the reason for the conflict (thats why I said uninstall whatever you have to install on a clean system). Glad you managed with JDK1.6
Apr
30
comment How do I treat JMS queue as a temporary storage?
Well the Oracle specification is just a specification, it doesn't offer you an implementation. You need to choose one of the JMS providers available such as Apache ActiveMQ (unless you're using a JEE application server). If you search online for JMS synchronous receive you'll get loads of examples. I just tried it and this one was at the top effectivemessaging.blogspot.co.uk/2009/01/… . At least do some effort to find things yourself!
Apr
27
comment Java Programming & Design
Maybe you should consider a freelance site and fork out some money to get your assignment done... or learn how to do it yourself as your teacher intended!
Apr
26
answered Hibernate Error: a different object with the same identifier value was already associated with the session
Apr
26
answered Can't install jdk on Fedora with yum nor with rpm
Apr
26
accepted Using Batch request in PHP SDK to get Facebook Album Covers
Apr
26
comment Using Batch request in PHP SDK to get Facebook Album Covers
Yes. Just posted the code I built to solve this.
Apr
26
answered Using Batch request in PHP SDK to get Facebook Album Covers
Apr
22
comment How do I treat JMS queue as a temporary storage?
Yes but thats also long and just too abstract. What do you want to achieve exactly? Asynchronous receive? Synchronous receive? And which JMS implementation did you choose? Are you using any frameworks such as Spring?
Apr
22
comment How do I treat JMS queue as a temporary storage?
@gurvinder372 For which comment? I mentioned lots of stuff :) What do you actually need to know?
Apr
18
comment How do I treat JMS queue as a temporary storage?
@gurvinder372 Yes. You can call receive() synchronously when you want, i.e. when you are ready to process the next message. Alternatively you can let the queue library call you when there is a message waiting for you by implementing the MessageListener interface. Both are possible and available for you to use depending on what your situation is. However, the MessageListener.onMessage() method is not called with the next message until the session has completed the last call, so if serial processing or overloading is what worries you, the JMS Session ensures you will only get one at a time.
Apr
18
revised How do I treat JMS queue as a temporary storage?
added 12 characters in body
Apr
18
comment How do I treat JMS queue as a temporary storage?
@gurvinder372 Your requirement seems to be exactly that of a JMS queue. It is still not clear how the 'temporary storage' and 'custom data structure' come into the story. In my answer I pretty much described what you can do regarding data structures and temporary storage.
Apr
18
comment How do I treat JMS queue as a temporary storage?
@gurvinder372 it might be better if you describe a little bit more what is the scenario you have
Apr
18
answered How do I treat JMS queue as a temporary storage?
Apr
18
comment Why does ON DELETE CASCADE sometimes take long on Postgres 9?
There are no locks, no one else is accessing the database. (In fact I sometimes just drop the database to clean out the data instead because deleting it takes so long, and it allows me). Yes there is a large amount of rows, but inserting them takes 8 minutes, so it doesn't make sense that deleting them takes hours. I recently increased the shared_buffers and effective_cache_size from defaults, and this seemed to have some effect, taking it down to around 20 minutes... better but not sure if its optimal.