yacy_search_server/source/de/anomic/kelondro/index
orbiter ce1adf9955 serialized all logging using concurrency:
high-performance search query situations as seen in yacy-metager integration showed deadlock situation caused by synchronization effects inside of sun.java code. It appears that the logger is not completely safe against deadlock situations in concurrent calls of the logger. One possible solution would be a outside-synchronization with 'synchronized' statements, but that would further apply blocking on all high-efficient methods that call the logger. It is much better to do a non-blocking hand-over of logging lines and work off log entries with a concurrent log writer. This also disconnects IO operations from logging, which can also cause IO operation when a log is written to a file. This commit not only moves the logger from kelondro to yacy.logging, it also inserts the concurrency methods to realize non-blocking logging.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6078 6c8d7289-2bf4-0310-a012-ef5d649a1542
2009-06-15 21:19:54 +00:00
..
BinSearch.java more memory leak fixing hacks 2009-02-11 13:31:10 +00:00
Column.java - refactoring of IntegerHandleIndex and LongHandleIndex: both classes had been merged into the new HandleMap class, which handles (key<byte[]>,n-byte-long) pairs with arbitraty key and value length. This will be useful to get a memory-enhanced/minimized database table indexing. 2009-06-07 21:48:01 +00:00
HandleMap.java some small changes in HandleMap Testing 2009-06-10 15:02:52 +00:00
HandleSet.java removed option to use different primary keys in kelondro tables 2009-03-13 16:52:31 +00:00
IndexTest.java a collection of 2009-06-14 22:09:08 +00:00
ObjectArray.java more refactoring of indexer and kelondro classes; 2009-03-02 10:00:32 +00:00
ObjectArrayCache.java removed option to use different primary keys in kelondro tables 2009-03-13 16:52:31 +00:00
ObjectIndex.java simplified code, removed one unused method in all implementing classes 2009-05-21 23:53:01 +00:00
ObjectIndexCache.java simplified code, removed one unused method in all implementing classes 2009-05-21 23:53:01 +00:00
Row.java serialized all logging using concurrency: 2009-06-15 21:19:54 +00:00
RowCollection.java serialized all logging using concurrency: 2009-06-15 21:19:54 +00:00
RowSet.java serialized all logging using concurrency: 2009-06-15 21:19:54 +00:00
RowSetArray.java simplified code, removed one unused method in all implementing classes 2009-05-21 23:53:01 +00:00
SimpleARC.java better and more performant synchronization in SimpleARC, the caching object for word hashes. Speeds up indexing. 2009-05-05 20:19:51 +00:00