Re: Using an unchecked exception instead of RemoteException

2015-06-09 Thread Palash Ray
Thanks a lot Gregg. This is certainly an interesting idea worth exploring. I will let you know how it goes. Thanks, Palash. On Tue, Jun 9, 2015 at 8:45 AM, Greg Trasuk wrote: > > If you’re making remote calls, then there is a definite chance that you > will have communications errors. So, it’s

Re: Clustered Jini Server? Was: Re: Mirroring to GitHub

2015-06-09 Thread Gregg Wonderly
Any Java spaces client spends most of its time blocked on a read/take from the space which makes it a very synchronous interface. You would put work into the space and then turn right around an make a blocking take in most cases. Gregg Sent from my iPhone > On Jun 3, 2015, at 6:42 AM, Palash

Re: Clustered Jini Server? Was: Re: Mirroring to GitHub

2015-06-09 Thread Gregg Wonderly
One of the primary issues with trying to scale join applications is all of the locking and blocking through the security subsystems. Peter's work in this area should be a tremendously visible performance boost for any app which has a high call load, such as data processing. Gregg Sent from my

Re: Using an unchecked exception instead of RemoteException

2015-06-09 Thread Greg Trasuk
If you’re making remote calls, then there is a definite chance that you will have communications errors. So, it’s probably not a good idea to just hide the errors, especially since the application handling/response to a communications error really should be different from the handling of an ap