Changes between Version 75 and Version 76 of BluePrint/TextSearch


Ignore:
Timestamp:
08/16/13 20:24:40 (11 years ago)
Author:
Vishrut Mehta
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/TextSearch

    v75 v76  
    2722722) Unit tests for efficiency test(it will also cover manual tests to check the efficiency of the search results)
    273273
    274 
    275 === Full Text Functionality ===
    276 
    277 * The full text search functionality is integrated in modules/s3/s3resource.py, the fulltext() does the work.
    278 * The flow is: First the TEXT query goes to transform() function, which would split the query recursively and then transform the query.
    279 * After transforming, the query with TEXT operator will go to fulltext() function and would search for the keywords in the indexed documents.
    280 * It will retrieve document ids and then covert into a BELONGS S3ResourceQuery.
    281 * The code sample for the fulltext() is in ''models/s3/s3resource.py''
    282274
    283275=== Unit Test ===