Oh, sorry I just realized that it has the terracotta licence header on it,
had I realized i would have removed it.  That's because the version of the
file i had to hand was from the terracotta forge svn repo, and code in there
has to have their licence.

Originally it was Apache 2 licensed and I would treat it as such.

Sorry for the confusion, 

Richard



A. MaOhza wrote:
> 
> On 20.10.2009 13:30, richardwilko wrote:
>>
>> Hi,
>>
>> The Terracotta SecondLevelCacheSessionStore does not contain any
>> Terracotta
>> specific implementation or dependencies, and should work fine on
>> AppEngine
>> (I haven't tested it though).
>>
>> All it is is an implementation of IPageStore, where the pages are
>> serialized
>> to byte arrays (like the disk store), and then these byte arrays are
>> stored
>> in the http session, rather than on disk.  I have attached the file in
>> this
>> thread so you dont need to dig around in the terracotta svn repo.
>>
>> to use it do this in your application class:
>>
>> @Override
>> public ISessionStore newSessionStore() {
>>       return new SecondLevelCacheSessionStore(this,  new
>> TerracottaPageStore(100));
>> }
>>
>> the 100 is the number of versions of pages you want to keep, and can be
>> customized as you feel appropriate.
>>
> 
> 
> Richard,
> 
> thanks a lot for providing the source to me. This is indeed a valuable 
> starting point.
> 
> I just want to make sure that there can't be any copyright issues when I 
> modify the code due to the copyright statement in the header?
> 
> regards,
> andr
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> 


-----
http://richard-wilkinson.co.uk My blog: http://richard-wilkinson.co.uk 
-- 
View this message in context: 
http://www.nabble.com/Google-App-Engine-and-Wicket-tp23001592p25974473.html
Sent from the Wicket - User mailing list archive at Nabble.com.


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

Reply via email to