rudra tripathy

Greenhorn
+ Follow
since May 26, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
1
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by rudra tripathy

Hi All,

I have one problem.

I have multiple instances which would execute multiple versions of one application.

Now the code is same, but the classes would be loaded from different jars at instance level. Anybody can suggest on this. this includes static classes also.


Thanks and Regards,
Rudra
10 years ago
Hi Benjamin,

There are three things.

fork/join would not replace multi threading, it s just another added advantage. the functional languages are trying to provide distributed features which is better than concurrent, but those are not yet become standards. One who what to implement multi threading features still could use concurrent package.

Hopefully it answers your question.

Regards,
Rudra
Hi Henry/Jeff,

Thanks for the clarification.

Thanks and Regards,
Rudra
Hi All,

I have one iterator of size, say 100. I want to divide it 10 batch of 10 and process it. Is it possible?
Hi Steve,

Thanks for the confirmation.
Doesn't thread pool take care of that?if my thread pool size is 10, and i have 100 threads to execute, then this should automatically take care of,right, or i misunderstood the question?
Thanks for the reply. Yeah.. Our architect is trying to push for column index and he claimed it is faster by column index. Tried googling, but couldn't get any definite answer for this.

Thannks
Rdura
Hi All,

Should we use rs.getString("columnname") or rs.getString(columnindex) and which one is fatser?
Thanks Gajendra for clarifying the doubt. Yeah, each index has some other meaning for me. If Iam not getting excpetion or deadlock while updating 2 indeces by 2 threads, its fine for me.

Thanks again
Rudra
13 years ago
Thanks martin..My intention is that since the updataion would be index wise and there would be overlap of data, hence data inconsistency is not there.Only doubt I have whether it would throw any exception.
13 years ago
Hi All,

I have certain values in a arry. Now while trying to apply multi threading i have to update array. Should I divide the arry to multiple sub array or could write safely to array. for example thrad 1 would write to arr[0] and thread 2 would write to arr[1]?

Thanks in advance
Rudra
13 years ago
hi All,

is there any other disadvantgaes and advantages of using static import-perticualrly in large code base.

one of the concern is redability where one has to refer to top to make sure which static variable one using

Thanks in advance,
Rudra
15 years ago
Hi All,

When I click submit button, it would be forward to some other page depending upon the action. My requirement is to display the new page in another tab in samne window.

Thanks in advance,
Rudra
16 years ago
Hi All,

I have web page having multiple tabs. each tab has one form. I want to submit one tab having button "Add User". It will call one action and new tab would be created which will have the value from server. I am using struts for action.

Please suggest.

Thanks in advance,
Rudra
Thanks a lot for the suggestions given, and I went throught them. I just thought of implementing the thing in the following manner, basically applying PKI system 2 times.

1. The person will apply hash to his bid value.
2. Then he will apply private key and will send public key to the receiver.
3. The reciever would apply his private key and send the public key to the bidder,i.e. the person who sent the bid.
4. the value would be stored in database, and would apply the security feature of database to limit the access to the data.
5. When the bid would open on the day, the reciever would apply the key to decipher from his end. Then the sender would apply the key to get the original data.
Need your feedback on this.

Thanks in advance,
Rudra
16 years ago