Changes between Initial Version and Version 1 of DespoinaLog/2010/06/16


Ignore:
Timestamp:
2010-10-01T23:19:13+02:00 (14 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DespoinaLog/2010/06/16

    v1 v1  
     1 * stemmer (later to be used in lucene ) :  http://snowball.tartarus.org/ --> [http://snowball.tartarus.org/algorithms/english/stemmer.html Porter (for english)]
     2 * search within a search  (later to be used in lucene ) :
     3   * 1. Use !QueryFilter with the previous query as the filter. (you can search the mailing list archives for !QueryFilter and Doug Cutting's recommendations against using it for this purpose)
     4     1. Combine the previous query with the current query using !BooleanQuery, using the previous query as required.
     5       * The !BooleanQuery approach is the recommended one.
     6 * Lucene Fuzzy query : http://lucene.apache.org/java/2_4_0/api/org/apache/lucene/search/FuzzyQuery.html
     7   * http://www.ibm.com/developerworks/web/library/wa-lucene2/
     8
     9Molgenis Fix : GeneratorServlet.java(125l) : setModel_database --> setModelDatabase. 
     10
     11Links
     12
     13 * other options for stemming (IR systems)
     14   * http://code.google.com/p/ir-themis/ *
     15 * http://www.theserverside.com/news/1365139/I-Love-Lucene *
     16 * http://struts.apache.org/
     17 * http://www.opensymphony.com/webwork/
     18 * Whoosh is a fast, featureful full-text indexing and searching library implemented in pure Python. Programmers can use it to easily add search functionality to their applications and websites. Every part of how Whoosh works can be extended or replaced to meet your needs exactly. : http://pypi.python.org/pypi/Whoosh/ *