I have objects I am saving to the file system using serialization. When I load the app, should I load all the objects into memory or just stubs (for searching capabilities)?
If I load just stubs, then I would load them from the file system when they are needed and keep them in memory after that for quick access.
The order of magnitude is hundreds of records not thousands.
Which way would you recommend?