Rename SimpleMapStore impls to Legacy* and move to legacy/ submodule …#221
Merged
Rename SimpleMapStore impls to Legacy* and move to legacy/ submodule …#221
Conversation
…220) Move `SimpleMapStoreGlobal` → `LegacySimpleMapStoreGlobal` and `SimpleMapStorePerKey` → `LegacySimpleMapStorePerKey` under a new `simple_map_store/legacy/` submodule, in preparation for introducing optimised replacements that will reclaim the original names (PR #175 part b). - `legacy/global.rs` / `legacy/per_key.rs`: original implementations, renamed with the `Legacy` prefix throughout (struct, impl, log messages) - `legacy/mod.rs`: re-exports both legacy types - `simple_map_store/mod.rs`: references legacy module; `SimpleMapStore` enum now wraps `LegacySimpleMapStoreGlobal` / `LegacySimpleMapStorePerKey` - `benches/simple_store_bench.rs`: doc comment updated to reflect that the bench profiles the legacy store implementation Public API (`SimpleMapStore`, `Store`) is unchanged. Co-authored-by: zz_y <zz_y@node0.zz-y-296227.softmeasure-pg0.wisc.cloudlab.us> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <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.
…(#220)
Move
SimpleMapStoreGlobal→LegacySimpleMapStoreGlobalandSimpleMapStorePerKey→LegacySimpleMapStorePerKeyunder a newsimple_map_store/legacy/submodule, in preparation for introducing optimised replacements that will reclaim the original names (PR #175 part b).legacy/global.rs/legacy/per_key.rs: original implementations, renamed with theLegacyprefix throughout (struct, impl, log messages)legacy/mod.rs: re-exports both legacy typessimple_map_store/mod.rs: references legacy module;SimpleMapStoreenum now wrapsLegacySimpleMapStoreGlobal/LegacySimpleMapStorePerKeybenches/simple_store_bench.rs: doc comment updated to reflect that the bench profiles the legacy store implementationPublic API (
SimpleMapStore,Store) is unchanged.