fix: exclude __words__ keyword index from corruption detection and getStats()
The __words__ keyword index stores 50-5000 entries per entity (one per word), which inflated avg entries/entity well above the corruption threshold of 100. This caused: 1. validateConsistency() to falsely detect corruption on every startup, triggering unnecessary clearAllIndexData() + rebuild() cycles 2. getStats() to log false "Metadata index may be corrupted" warnings and report inflated totalEntries/totalIds stats Both methods now skip __words__ when counting, so stats and health checks reflect metadata fields only (noun, type, createdAt, etc.). Keyword search is unaffected since the __words__ field index itself is not modified.
This commit is contained in:
parent
32dbdcec61
commit
364360d447
128 changed files with 5637 additions and 5682 deletions
|
|
@ -68,7 +68,7 @@ ${chalk.cyan('Examples:')}
|
|||
$ brainy vfs search "React components"
|
||||
$ brainy vfs similar /code/Button.tsx
|
||||
|
||||
${chalk.dim('# Storage management (v4.0.0)')}
|
||||
${chalk.dim('# Storage management')}
|
||||
$ brainy storage status --quota
|
||||
$ brainy storage lifecycle set ${chalk.dim('# Interactive mode')}
|
||||
$ brainy storage cost-estimate
|
||||
|
|
@ -217,11 +217,11 @@ program
|
|||
|
||||
program
|
||||
.command('path <from> <to>')
|
||||
.description('Find semantic path between items (v3.21.0)')
|
||||
.description('Find semantic path between items')
|
||||
.option('--steps', 'Show step-by-step path')
|
||||
.option('--max-hops <number>', 'Maximum path length', '5')
|
||||
.action(() => {
|
||||
console.log(chalk.yellow('\n⚠️ Semantic path finding coming in v3.21.0'))
|
||||
console.log(chalk.yellow('\n⚠️ Semantic path finding coming soon'))
|
||||
console.log(chalk.dim('This feature requires implementing graph traversal algorithms'))
|
||||
console.log(chalk.dim('Use "brainy neighbors" and "brainy hierarchy" to explore connections'))
|
||||
})
|
||||
|
|
@ -446,7 +446,7 @@ program
|
|||
vfsCommands.tree(path, options)
|
||||
})
|
||||
|
||||
// ===== Storage Management Commands (v4.0.0) =====
|
||||
// ===== Storage Management Commands =====
|
||||
|
||||
program
|
||||
.command('storage')
|
||||
|
|
@ -610,7 +610,7 @@ program
|
|||
.option('--iterations <n>', 'Number of iterations', '100')
|
||||
.action(utilityCommands.benchmark)
|
||||
|
||||
// ===== COW Commands (v5.0.0) - Instant Fork & Branching =====
|
||||
// ===== COW Commands - Instant Fork & Branching =====
|
||||
|
||||
program
|
||||
.command('fork [name]')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue