uxf/content
最新稳定版本:3.79.0
Composer 安装命令:
composer require uxf/content
包简介
README 文档
README
Install
$ composer req uxf/content
ContentSearchHelper
function search(string $term) {
$qb = $this->entityManager->createQueryBuilder()
->select('article')
->from(Article::class, 'article');
$qb = ContentSearchHelper::apply($qb, 'article.content.textSearch', $text, ContentSearchHelper::EQUALS);
return $qb->getQuery()->getResult();
}
Doctrine migration
$this->addSql("CREATE TEXT SEARCH DICTIONARY unaccented_czech (template = ispell, dictfile = 'unaccented_czech', afffile = 'unaccented_czech', stopwords = 'unaccented_czech')");
$this->addSql("CREATE TEXT SEARCH CONFIGURATION unaccented_cs (copy = simple)");
$this->addSql("ALTER TEXT SEARCH CONFIGURATION unaccented_cs ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part WITH unaccented_czech");
GIN index
-- original
CREATE INDEX IDX_42803DB7DCC6AB0B ON app_blog.test_article (content_search);
-- modified
CREATE INDEX IDX_42803DB7DCC6AB0B ON app_blog.test_article USING GIN(content_search);
统计信息
- 总下载量: 12.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-01-17