Add orphan finder - #6
Merged
Merged
Conversation
findOrphans() reconciles the whole keyspace against the model-redis storage contract (<Model> set + <Model>_<id> hashes) and reports three model-agnostic orphan classes: leaked hashes (hash with no set member), dangling members (set member with no hash), and broken rel:'one' foreign keys. Model families are discovered from the keyspace, so models that were used but never register()-ed are still checked. pruneOrphans() removes only dangling set members, which reference nothing and so cannot lose data; leaked hashes and broken relations are left for manual review. Adds SCAN/TYPE to the test mock, a tests/orphans.test.js suite (9 tests), and README documentation. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Bump the redis dependency from ^4.6.10 to ^6.1.0. The only code change needed is the SCAN cursor in findOrphans: redis v5+ requires the cursor as a string, so _scanKeys now starts and compares it as '0' instead of the number 0. Verified against a live redis 7.0 server: CRUD, key-rename on update, listDetail filtering, remove, rel:one loading, and orphan detection/pruning all pass, plus the mock unit suites (75 passing). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
No description provided.