Author: mgrigorov
Date: Mon Jul 18 07:08:45 2011
New Revision: 1147763
URL: http://svn.apache.org/viewvc?rev=1147763&view=rev
Log:
Update the javadoc of IStoreSettings#setInmemoryCacheSize()
Modified:
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IStoreSettings.java
Modified:
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IStoreSettings.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IStoreSettings.java?rev=1147763&r1=1147762&r2=1147763&view=diff
==============================================================================
---
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IStoreSettings.java
(original)
+++
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IStoreSettings.java
Mon Jul 18 07:08:45 2011
@@ -28,23 +28,28 @@ import org.apache.wicket.util.lang.Bytes
/**
* An interface for settings related to the the storages where page instances
are persisted -
* {@link IPageStore}, {@link IDataStore} and {@link IPageManager}.
+ * <p>
+ * For more information about page storages read <a
+ * href="https://cwiki.apache.org/confluence/x/qIaoAQ">Page Storage - Wiki
page</a>
+ * </p>
*
* @since 1.5
*/
public interface IStoreSettings
{
/**
- * @return the number of page instances which will be stored in the
http session for faster
- * retrieval
+ * @return the number of page instances which will be stored in the
application scoped cache for
+ * faster retrieval
*/
int getInmemoryCacheSize();
/**
- * Sets the maximum number of page instances which will be stored in
the http session for faster
- * retrieval
+ * Sets the maximum number of page instances which will be stored in
the application scoped
+ * second level cache for faster retrieval
*
* @param inmemoryCacheSize
- * the maximum number of page instances which will be held
in the http session
+ * the maximum number of page instances which will be held
in the application scoped
+ * cache
*/
void setInmemoryCacheSize(int inmemoryCacheSize);