monogo / magento-typesense-cms-pages
Typesense CMS 页面索引器 Magento 实现
1.0.4
2023-08-23 13:06 UTC
Requires
- php: >=8.1
- monogo/magento-typesense-core: ^1.0
README
Magento CMS 页面索引器
配置
第一步,前往 Magento 管理员 → 配置 → Typesense → 目录分类
索引器
初始模式
'name' => $prefix . '_cms_pages' . $suffix,
'fields' => [
['name' => 'page_id', 'type' => 'int32', 'optional' => false, 'index' => true],
['name' => 'identifier', 'type' => 'string', 'optional' => false, 'index' => true],
['name' => 'title', 'type' => 'string', 'optional' => false, 'index' => true],
['name' => 'meta_keywords', 'type' => 'string', 'optional' => true, 'index' => false],
['name' => 'meta_description', 'type' => 'string', 'optional' => true, 'index' => false],
['name' => 'meta_title', 'type' => 'string', 'optional' => true, 'index' => false],
['name' => 'page_layout', 'type' => 'string', 'optional' => true, 'index' => false],
['name' => 'content_heading', 'type' => 'string', 'optional' => true, 'index' => true],
['name' => 'content', 'type' => 'string', 'optional' => true, 'index' => false],
['name' => 'content_stripped', 'type' => 'string', 'optional' => true, 'index' => true],
['name' => 'url', 'type' => 'string', 'optional' => false, 'index' => true],
],
'default_sorting_field' => 'page_id'