PostgreSQL plugin enabling Groonga full-text search as index
PostgreSQL plugin to use Groonga as index
pgroonga$ psql -d your_database -c 'CREATE EXTENSION pgroonga;'$ psql -d your_database -c 'CREATE INDEX idx_content ON articles USING pgroonga (content);'$ psql -d your_database -c "SELECT * FROM articles WHERE content @@ 'search_term';"