Im BPM- und Integrations-Umfeld trifft man immer wieder auf folgendes Problem:
Java
Software-Test mit verteilten Systemen im BPM- und Integrations-Umfeld
Submitted by Thomas on Wed, 2010-05-19 10:21LUCENE-1287 has been committed after two years
Submitted by Thomas on Tue, 2010-05-18 11:57After two years my improvment for the Lucene Java search library has been committted... See LUCENE-1287 for details.
Give Solr Request Handlers possibility to suppress HTTP caching
Submitted by Thomas on Thu, 2008-05-22 12:08I have submitted a patch to allow Solr's RequestHandlers to suppress the creation of HTTP caching headers. It makes no sense for example to cache responses for the admin pages and the update handlers. There is another patch that allows partial responses with timeout. This responses should not be cached as well.
Requests that end up in an exception should not be cached as well.
The patch is registered as SOLR-505 in Apache's JIRA.
Committed! (LUCENE-1166) A tokenfilter to decompose compound words
Submitted by Thomas on Fri, 2008-05-16 13:57LUCENE-1166 (A tokenfilter to decompose compound words) has been committed today. Hooray...
Calculator for Linux Huge Page Table Config for Java JVMs
Submitted by Thomas on Tue, 2008-03-11 20:35You can speedup Java processes that handle a big heap (several gigabytes) by configuring Linux and the JVM to use large memory pages. This minimizes the load on the TLB tables (which can hold only a limited number of entries) of the processor. For applications that don't have localized memory structures you can easily see a speedup of 50-100% because of the trashing of the TLB caches! But the speedup depends on the type of application you are running of course.
logtail - an AJAXified tailing application
Submitted by Thomas on Sat, 2006-12-16 13:33What can cause OutOfMemoryError
Submitted by Thomas on Wed, 2006-12-13 09:18There are a lot of causes for OOE in Java. Here is my list of causes
- Exhausted heap. Try to increase heap size with -Xmx.
- Too small PermSize. You can increase this memory pool by adding
-XX:MaxPermSize=valueto the JVMs command line. If you use JSPs or some similar technology you should set this to at least 128MB. (see http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html for details)


