yacy_search_server/source/de/anomic/server
theli a2fa75e688 *) Asynchronous queuing of crawl job URLs (stackCrawl)
various checks like the blacklist check or the robots.txt disallow check are now
   done by a separate thread to unburden the indexer thread(s)
   TODO: maybe we have to introduce a threadpool here if it turn out that this single
         thread is a bottleneck because of the time consuming robots.txt downloads

*) improved index transfer
   The index selection and transmission is done in parallel now to improve index 
   transfer performance.
   TODO: maybe we could speed up performance by unsing multiple transmission threads in 
         parallel instead of only a single one.

*) gzip encoded post requests
   it is now configureable if a gzip encoded post request should be send on
   intex transfer/distribution

*) storage Peer (very experimentell and not optimized yet)
   Now it's possible to send the result of the yacy indexer thread to a remote peer 
   istead of storing the indexed words locally. 
   This could be done by setting the property "storagePeerHash" in the yacy config file
   - Please note that if the index transfer fails, the index ist stored locally.
   - TODO: currently this index transfer is done by the indexer thread. 
     To seedup the indexer
     a) this transmission should be done in parallel and
     b) multiple chunks should be bundled and transfered together


*) general performance improvements  
   - better memory cleanup after http request processing has finished
   - replacing some string concatenations with stringBuffers
   - replacing BufferedInputStreams with serverByteBuffer
   - replacing vectors with arraylists wherever possible
   - replacing hashtables with hashmaps wherever possible
   This was done because function calls to verctor or hashtable functions
   take 3 time longer than calls to functions of arraylists or hashmaps.
   TODO: we should take a look on the class serverObject which is inherited from hashmap
         Do we realy need a synchronization for this class?
   TODO: replace arraylists with linkedLists if random access to the list elements is not needed

*) Robots Parser supports if-modified-since downloads now
   If the downloaded robots.txt file is older than 7 days the robots parser tries to
   download the robots.txt with the if-modified-since header to avoid unnecessary downloads
   if the file was not changed. Additionally the ETag header is used to detect changes.

*) Crawler: better handling of unsupported mimeTypes + FileExtension

*) Bugfix: plasmaWordIndexEntity was not closed correctly in 
   - query.java
   - plasmaswitchboard.java

*) function minimizeUrlDB added to yacy.java 
   this function tests the current urlHashDB for unused urls
   ATTENTION: please don't use this function at the moment because
              it causes the wordIndexDB to flush all words into the
              word directory!

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@853 6c8d7289-2bf4-0310-a012-ef5d649a1542
2005-10-05 10:45:33 +00:00
..
logging *) Replacing jsch 0.1.19 lib with newer version 0.1.21 2005-09-20 21:49:47 +00:00
serverAbstractSwitch.java *) Asynchronous queuing of crawl job URLs (stackCrawl) 2005-10-05 10:45:33 +00:00
serverAbstractThread.java kbytes instead of bytes in performance settings; new default values 2005-09-28 18:53:41 +00:00
serverByteBuffer.java small change 2005-09-07 15:20:12 +00:00
serverClassLoader.java *) Import statements reorganized 2005-05-05 05:32:19 +00:00
serverCodings.java *) Asynchronous queuing of crawl job URLs (stackCrawl) 2005-10-05 10:45:33 +00:00
serverCore.java *) Asynchronous queuing of crawl job URLs (stackCrawl) 2005-10-05 10:45:33 +00:00
serverDate.java changed handling of time-zones 2005-09-27 16:28:55 +00:00
serverFileUtils.java default-button in profile menue 2005-07-20 17:08:58 +00:00
serverHandler.java *) adding additional methods that should be implemented by all 2005-06-09 10:54:03 +00:00
serverInstantThread.java *) Renaming Logger function names to reflect the proper Java Logging API Loglevels 2005-08-30 21:32:59 +00:00
serverMemory.java removed cache-control from low and medium priority caches which reduces memory use and computation overhead 2005-09-22 20:01:26 +00:00
serverObjects.java *) Asynchronous queuing of crawl job URLs (stackCrawl) 2005-10-05 10:45:33 +00:00
serverPortForwarding.java *) Adding X-Forwarded-For Header 2005-09-05 08:01:54 +00:00
serverPortForwardingSch.java *) Adding X-Forwarded-For Header 2005-09-05 08:01:54 +00:00
serverSemaphore.java *) Adding X-Forwarded-For Header 2005-09-05 08:01:54 +00:00
serverSwitch.java various configuration options in memory performance 2005-09-21 14:21:45 +00:00
serverSwitchAbstractAction.java *) adding reference to logger 2005-06-09 10:57:42 +00:00
serverSwitchAction.java *) adding reference to logger 2005-06-09 10:57:42 +00:00
serverSystem.java *) Import statements reorganized 2005-05-05 05:32:19 +00:00
serverThread.java memory-logging 2005-09-28 00:52:54 +00:00