support for Multi Window wicket 6.x -


hi using wicket , getting page expire when ever 2 pages open , trying submit in on after other there way support getpagesettings().setautomaticmultiwindowsupport(true) in wicket 6.8

you've know how big pages , how many sessions you've in parallel. think page size (serialized) bigger maxsizepersession , because of last page stored on disk.

you can tweak ipagestore settings bit (but increase resource usage):

/**  * sets maximum number of page instances stored in application scoped  * second level cache faster retrieval  *   * @param inmemorycachesize  *            maximum number of page instances held in application scoped  *            cache  */ void setinmemorycachesize(int inmemorycachesize);      /**  * sets maximum size of {@link file} page instances per session stored. after  * reaching size {@link diskdatastore} start overriding oldest pages @  * beginning of file.  *   * @param maxsizepersession  *            maximum size of file page instances stored per session. in  *            bytes.  */ void setmaxsizepersession(bytes maxsizepersession); 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -