refactor: consolidate split known-names config loading#22
Merged
bensig merged 1 commit intoMemPalace:mainfrom Apr 7, 2026
Merged
refactor: consolidate split known-names config loading#22bensig merged 1 commit intoMemPalace:mainfrom
bensig merged 1 commit intoMemPalace:mainfrom
Conversation
igorls
added a commit
to igorls/mempalace
that referenced
this pull request
Apr 7, 2026
- Enable WAL journal mode in _conn() for better concurrent read performance and reduced SQLITE_BUSY risk - Add LIMIT 100 to entity-filtered timeline query (was unbounded, while global timeline already had LIMIT 100) Findings: MemPalace#8 (HIGH — no WAL mode), MemPalace#22 (LOW — inconsistent limits) Includes test infrastructure from PR MemPalace#131. 92 tests pass.
igorls
added a commit
to igorls/mempalace
that referenced
this pull request
Apr 7, 2026
- Enable WAL journal mode in _conn() for better concurrent read performance and reduced SQLITE_BUSY risk - Add LIMIT 100 to entity-filtered timeline query (was unbounded, while global timeline already had LIMIT 100) Findings: MemPalace#8 (HIGH — no WAL mode), MemPalace#22 (LOW — inconsistent limits) Includes test infrastructure from PR MemPalace#131. 92 tests pass.
jphein
added a commit
to jphein/mempalace
that referenced
this pull request
Apr 12, 2026
…t count 701 - README: mark MemPalace#635 as merged via MemPalace#667, fix cosine (not L2) distance - CLAUDE.md: test count 692→701, drawer count 132K→134K, replace stale upstream PR list with current table, add fork change MemPalace#22 (bensig's security/pagination/error reporting fixes from MemPalace#667) Co-Authored-By: Claude Opus 4.6 <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
previously re-read and re-parsed the same config file in multiple helpers, which duplicated logic and made the utility harder to reason about.
Validation