feat: 优化 Manticore 相关描述

This commit is contained in:
kuaifan
2026-01-04 13:30:03 +00:00
parent 31045b3808
commit 4b0f4e388c
20 changed files with 93 additions and 96 deletions

View File

@@ -14,19 +14,19 @@ class SyncTaskToManticore extends Command
use ManticoreSyncLock;
/**
* 更新数据MVA 方案allowed_users 在同步时自动写入)
* 更新数据
* --f: 全量更新 (默认)
* --i: 增量更新从上次更新的最后一个ID接上持续处理直到完成
* --i: 增量更新
*
* 清理数据
* --c: 清除索引
*
* 其他选项
* --sleep: 每批处理完成后休眠秒数(增量模式)
* --sleep: 每批处理完成后休眠秒数
*/
protected $signature = 'manticore:sync-tasks {--f} {--i} {--c} {--batch=100} {--sleep=3}';
protected $description = '同步任务数据到 Manticore SearchMVA 权限方案)';
protected $description = '同步任务数据到 Manticore Search';
public function handle(): int
{
@@ -49,7 +49,7 @@ class SyncTaskToManticore extends Command
return 0;
}
$this->info('开始同步任务数据MVA 方案allowed_users 自动内联)...');
$this->info('开始同步任务数据...');
$this->syncTasks();
$this->info("\n同步完成");