Changes between Version 25 and Version 26 of Event/2013/GSoC/TextSearch
- Timestamp:
- 07/28/13 13:12:24 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Event/2013/GSoC/TextSearch
v25 v26 122 122 123 123 * The full text search functionality is integrated in modules/s3/s3resource.py, the fulltext() does the work. 124 * The flow is: First the __textquery goes to transform() function, which would split the query recursively and then transform the query.124 * The flow is: First the TEXT query goes to transform() function, which would split the query recursively and then transform the query. 125 125 * After transforming, the query with __text operator will go to fulltext() function and would search for the keywords in the indexed documents. 126 * It will retrieve document ids and then covert into a __belongs query.126 * It will retrieve document ids and then covert into a BELONGS S3ResourceQuery. 127 127 128 128