You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by shetc <sh...@bellsouth.net> on 2008/08/26 16:34:45 UTC

IClusterable -- When should it be used?

Some of the Wicket examples have classes that implement the IClusterable
interface.
Could the experts offer some guidelines as to when this interface should be
used?

Thanks!
-- 
View this message in context: http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19163261.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: IClusterable -- When should it be used?

Posted by shetc <sh...@bellsouth.net>.
Ah, so it's Terracotta-specific. I'm working with WebSphere, which I presume
won't take
notice of the IClusterable hint. Thanks very much, Johan!
-- 
View this message in context: http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169841.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: IClusterable -- When should it be used?

Posted by Eelco Hillenius <ee...@gmail.com>.
We can remove it again if we don't need it anymore.

Eelco

On Tue, Aug 26, 2008 at 1:30 PM, Matej Knopp <ma...@gmail.com> wrote:
> Right now there really isn't any practical reason for having
> IClusterable at all.
>
> Even terracotta uses regular serialization to get pages over cluster.
>
> -Matej
>
> On Tue, Aug 26, 2008 at 10:26 PM, Johan Compagner <jc...@gmail.com> wrote:
>> if you have objects that would be kept in the session, you have to use
>> Serializable.
>> at the moment you use that you can choose for IClusterable so that when you
>> use terracotta it will be clustered
>>
>> johan
>>
>>
>>
>> On Tue, Aug 26, 2008 at 10:14 PM, shetc <sh...@bellsouth.net> wrote:
>>
>>>
>>> I guess my real questions was: What objects in a Wicket application should
>>> be
>>> marked as clusterable?
>>> (Or did you already answer that? :confused: )
>>> --
>>> View this message in context:
>>> http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169507.html
>>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>>> For additional commands, e-mail: users-help@wicket.apache.org
>>>
>>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: IClusterable -- When should it be used?

Posted by Johan Compagner <jc...@gmail.com>.
both ways of doing it?
i think there are 2 now right?
the one that was made up first and now the one that is just the pagestore?


On Tue, Aug 26, 2008 at 10:30 PM, Matej Knopp <ma...@gmail.com> wrote:

> Right now there really isn't any practical reason for having
> IClusterable at all.
>
> Even terracotta uses regular serialization to get pages over cluster.
>
> -Matej
>
> On Tue, Aug 26, 2008 at 10:26 PM, Johan Compagner <jc...@gmail.com>
> wrote:
> > if you have objects that would be kept in the session, you have to use
> > Serializable.
> > at the moment you use that you can choose for IClusterable so that when
> you
> > use terracotta it will be clustered
> >
> > johan
> >
> >
> >
> > On Tue, Aug 26, 2008 at 10:14 PM, shetc <sh...@bellsouth.net> wrote:
> >
> >>
> >> I guess my real questions was: What objects in a Wicket application
> should
> >> be
> >> marked as clusterable?
> >> (Or did you already answer that? :confused: )
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169507.html
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> >> For additional commands, e-mail: users-help@wicket.apache.org
> >>
> >>
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: IClusterable -- When should it be used?

Posted by Matej Knopp <ma...@gmail.com>.
Right now there really isn't any practical reason for having
IClusterable at all.

Even terracotta uses regular serialization to get pages over cluster.

-Matej

On Tue, Aug 26, 2008 at 10:26 PM, Johan Compagner <jc...@gmail.com> wrote:
> if you have objects that would be kept in the session, you have to use
> Serializable.
> at the moment you use that you can choose for IClusterable so that when you
> use terracotta it will be clustered
>
> johan
>
>
>
> On Tue, Aug 26, 2008 at 10:14 PM, shetc <sh...@bellsouth.net> wrote:
>
>>
>> I guess my real questions was: What objects in a Wicket application should
>> be
>> marked as clusterable?
>> (Or did you already answer that? :confused: )
>> --
>> View this message in context:
>> http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169507.html
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: IClusterable -- When should it be used?

Posted by Johan Compagner <jc...@gmail.com>.
if you have objects that would be kept in the session, you have to use
Serializable.
at the moment you use that you can choose for IClusterable so that when you
use terracotta it will be clustered

johan



On Tue, Aug 26, 2008 at 10:14 PM, shetc <sh...@bellsouth.net> wrote:

>
> I guess my real questions was: What objects in a Wicket application should
> be
> marked as clusterable?
> (Or did you already answer that? :confused: )
> --
> View this message in context:
> http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169507.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: IClusterable -- When should it be used?

Posted by shetc <sh...@bellsouth.net>.
I guess my real questions was: What objects in a Wicket application should be
marked as clusterable?
(Or did you already answer that? :confused: )
-- 
View this message in context: http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19169507.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: IClusterable -- When should it be used?

Posted by Johan Compagner <jc...@gmail.com>.
wicket uses it as a tagging interface that it is clusterable/serializeable
this is used in Terracotta for example to know what objects they can cluster

johan


On Tue, Aug 26, 2008 at 4:34 PM, shetc <sh...@bellsouth.net> wrote:

>
> Some of the Wicket examples have classes that implement the IClusterable
> interface.
> Could the experts offer some guidelines as to when this interface should be
> used?
>
> Thanks!
> --
> View this message in context:
> http://www.nabble.com/IClusterable----When-should-it-be-used--tp19163261p19163261.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>