diesel_full_text_search

Crates.iodiesel_full_text_search
lib.rsdiesel_full_text_search
version2.2.0
sourcesrc
created_at2016-04-15 15:50:59.713689
updated_at2024-05-31 09:20:47.860024
descriptionAdds support for PostgreSQL full text search to Diesel
homepage
repositoryhttps://github.com/diesel-rs/diesel_full_text_search
max_upload_size
id4760
size18,683
Core (github:diesel-rs:core)

documentation

README

diesel_full_text_search

crates.io docs

Add support for Postgres full text search to diesel, the safe, extensible ORM and query builder for Rust.

This crate also serves as an example of how to extend diesel with database specific features outside of diesel itself as third party crate.

Example Usage


use diesel_full_text_search::*;

let search = "bar";

let query = foo::table.filter(to_tsvector(Foo::description).matches(to_tsquery(search)));

For complete examples, see /examples.

Commit count: 92

cargo fmt