You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our current PIRService example setup, we’re provisioning and storing icon assets by simply dumping every icon file into a single icons/ directory. As the dataset grows (potentially millions of icons), this approach:
Degrades filesystem performance (slow directory listings, high lookup latency).
Consumes excessive memory when the directory index is cached or scanned.
Problem Statement:
Is there a recommended pattern or built‑in support in PIRService for organizing or indexing icon assets other than placing them all in one flat folder?