Last active
December 23, 2015 15:09
-
-
Save vyper/6653262 to your computer and use it in GitHub Desktop.
Arquivos para o post: Melhorando o tempo de pesquisa utilizando Sphinx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
development: | |
adapter: mysql2 | |
username: root | |
password: | |
database: sphinx_test_development | |
test: | |
adapter: mysql2 | |
username: root | |
password: | |
database: sphinx_test_test | |
production: | |
adapter: mysql2 | |
username: root | |
password: | |
database: sphinx_test_production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ThinkingSphinx::Index.define :user, with: :active_record do | |
indexes firstname | |
indexes lastname | |
indexes nickname | |
indexes email | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment