Skip to content

DataStores

Martin Grigorov edited this page Jan 21, 2014 · 7 revisions

Implementations of IDataStore interface

Overview

By default Wicket provides DiskDataStore that persists serialized stateful pages in the local disk storage. When the application is heavily used this may lead to performance regressions.

The modules provided by this project aim to provide better implementations which store the data in memory and may provide replication facilities.

Modules

Memcached

Uses Memcached as a backend and spymemcached as a Java driver.

Maven

<dependency>
    <groupId>org.wicketstuff</groupId>
    <artifactId>wicketstuff-datastore-memcached</artifactId>
    <version>6.13.0</version>
</dependency>

License

Apache 2.0.

Author

Martin Grigorov

Clone this wiki locally