├── .gitignore ├── FURTHER_READING.md ├── README.md └── resources ├── 00_prepare.sql ├── 01_stemmer.sql ├── 02_queries.sql ├── 03_perfo.sql ├── 04_rank.sql └── 05_search_quality.sql /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | *.iml 4 | out 5 | gen 6 | -------------------------------------------------------------------------------- /FURTHER_READING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/FURTHER_READING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/README.md -------------------------------------------------------------------------------- /resources/00_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/00_prepare.sql -------------------------------------------------------------------------------- /resources/01_stemmer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/01_stemmer.sql -------------------------------------------------------------------------------- /resources/02_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/02_queries.sql -------------------------------------------------------------------------------- /resources/03_perfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/03_perfo.sql -------------------------------------------------------------------------------- /resources/04_rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/04_rank.sql -------------------------------------------------------------------------------- /resources/05_search_quality.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrl/understand-full-text-search/HEAD/resources/05_search_quality.sql --------------------------------------------------------------------------------