2.2.0
| 2024年5月31日 |
2.1.1
| 2023年10月19日 |
2.1.0
| 2023年5月26日 |
2.0.0
| 2022年8月29日 |
0.5.1
| 2016年4月15日 |
#1013 在 数据库接口
10,010 每月下载量
用于 3 crate
diesel_full_text_search

为Rust的安全、可扩展ORM和查询构建器diesel添加对Postgres全文搜索的支持。
此crate还演示了如何作为第三方crate在diesel外部扩展diesel的特定数据库功能。
示例用法
use diesel_full_text_search::*;
let search = "bar";
let query = foo::table.filter(to_tsvector(Foo::description).matches(to_tsquery(search)));
有关完整示例,请参阅/examples。