-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Labels
pinnedInstructs stale bot to ignore this issue.Instructs stale bot to ignore this issue.
Description
#683 replaced the old Collection class with a stripped down _SearchIndexer that does just enough for signac's internal use cases. However, that PR left a few tasks outstanding that we should consider:
- Replacing the
_SearchIndexerwith a plain dict and free functions. I don't anticipate that these changes will have a significant effect on the code base, but it's worth considering since it may improve clarity. The_SearchIndexerhas essentially no state beyond that of a normal dict, and while its contents are more restricted there is no particular enforcement, so conceptually using a free function might be clearer. Additionally, it is possible to create the object in an invalid state with the current approach. Some additional discussion is here. - Remove the potentially unnecessary JSON normalization as discussed in Replace Collection with lightweight _SearchIndexer. #667 (comment) (currently found here). I believe that this function is only invoked in places that have already performed suitable normalization, but we should verify this before making any final changes.
- Renaming the
_SearchIndexer. This is the lowest priority task and would be moot if we reimplemented it as a dict with free functions.
Metadata
Metadata
Assignees
Labels
pinnedInstructs stale bot to ignore this issue.Instructs stale bot to ignore this issue.