[REFACTOR]: Sort Custom Fields in DB to improve performance #222
Labels
No labels
bug
duplicate
enhancement
help wanted
high priority
invalid
L
low priority
M
medium priority
needs refinement
question
S
UX research
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: local-it/mitgliederverwaltung#222
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
See index live view for members: In-memory sorting: Custom field sorting is done in memory after loading.
This is suitable for small to medium datasets (<1000 members). For larger datasets, consider implementing database-level sorting or pagination. Memory filtering: Custom field values are filtered after loading to reduce memory usage, but all members are still loaded into memory.
Acceptance Criteria