Hi My application (Anthillpro) is currently Apache Derby - 10.1.3.1. I am looking at various ways to improve performance.
I would like to try setting the following property and am looking for some assurance from experienced users that there will be no ill affect. Any comments would be much appreciated. derby.storage.pageCacheSize Function Defines the size, in number of pages, of the database's data page cache (data pages kept in memory). The actual amount of memory the page cache will use depends on the following: * the size of the cache (configured with this property, derby.storage.pageCacheSize) * the size of the pages (configured with the derby.storage.pageSize<http://db.apache.org/derby/docs/10.2/tuning/rtunproper40688.html#rtunproper40688> property) * overhead (varies with JVMs) When increasing the size of the page cache, you typically have to allow more memory for the Java heap when starting the embedding application (taking into consideration, of course, the memory needs of the embedding application as well). For example, using the default page size of 4K, a page cache size of 2000 pages will require at least 8 MB of memory (and probably more, given the overhead). For a simple application (no GUI), using the Sun 1.1.7 JVM on Windows NT and using the -mx96m option (which allows 96 MB for the Java heap), it is possible to have a page cache size of 10,000 pages (approximately 40 MB). The minimum value is 40 pages. If you specify a lower value, Derby uses the default value. John Godschall Release Engineer | First Marblehead 781.658.5028 (direct) 617.513.1912 (mobile) [email protected]<mailto:[email protected]> *This e-mail and any attachments may contain content protected under federal law and is also confidential and proprietary in nature. If you received this message in error, please notify the sender immediately and delete the original and destroy all copies of the message and any attachments. Any other use of this e-mail by you including retaining, using, copying, distributing, or otherwise disclosing this information in any manner is prohibited.
