codeq/meilisearch-queueindexer
Composer 安装命令:
composer require codeq/meilisearch-queueindexer
包简介
Asynchronous node indexing for Medienreaktor.Meilisearch via the Flowpack JobQueue.
README 文档
README
Asynchronous live indexing for Medienreaktor.Meilisearch using Flowpack JobQueue.
The package decorates Neos' NodeIndexerInterface so publish operations enqueue live indexing jobs instead of writing to Meilisearch synchronously. A worker command drains the queue and delegates the actual indexing/removal work back to Medienreaktor.Meilisearch.
Installation
Require the package in the Neos distribution:
composer require codeq/meilisearch-queueindexer
If the package is not available on Packagist yet, add the repository explicitly:
{
"repositories": {
"codeq/meilisearch-queueindexer": {
"type": "vcs",
"url": "git@github.com:code-q-web-factory/CodeQ.Meilisearch.QueueIndexer.git"
}
}
}
This package expects medienreaktor/meilisearch to be installed and configured by the site package. Projects that use a forked Medienreaktor package must add the corresponding VCS repository in the root composer.json.
Queue Configuration
The default configuration uses a Doctrine queue named CodeQ.Meilisearch.QueueIndexer.Live:
Flowpack: JobQueue: Common: queues: 'CodeQ.Meilisearch.QueueIndexer.Live': preset: 'CodeQ.Meilisearch.QueueIndexer.Live' presets: 'CodeQ.Meilisearch.QueueIndexer.Live': className: 'Flowpack\JobQueue\Doctrine\Queue\DoctrineQueue' options: tableName: 'codeq_meilisearch_queueindexer_live'
Set up the queue after installing:
./flow queue:setup 'CodeQ.Meilisearch.QueueIndexer.Live'
Commands
Drain the live indexing queue:
./flow nodeindexqueue:work --verbose
Enqueue all fulltext-root documents from the live workspace:
./flow nodeindexqueue:build --verbose
Inspect queue state:
./flow nodeindexqueue:status
Flush the live queue:
./flow nodeindexqueue:flush
Settings
Live async indexing is enabled by default:
CodeQ: Meilisearch: QueueIndexer: enableLiveAsyncIndexing: true
Set enableLiveAsyncIndexing: false to fall back to synchronous Medienreaktor indexing.
Index Name Configuration
The queue indexer resolves its own indexClient from Medienreaktor.Meilisearch.indexName. For a complete environment-specific setup, the consuming site should also configure the upstream Medienreaktor indexer/commands/query builder to use the same setting, for example:
Medienreaktor\Meilisearch\Indexer\NodeIndexer: properties: indexClient: object: factoryObjectName: Medienreaktor\Meilisearch\Factory\IndexFactory factoryMethodName: create arguments: 1: setting: 'Medienreaktor.Meilisearch.indexName'
Production Worker
Run nodeindexqueue:work continuously in production. For Beach-style deployments, wrap it in a restart loop so the worker comes back after PHP exits:
while true; do /application/flow nodeindexqueue:work --verbose sleep 10 done
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-17