I have some xml files that will be read-only that I need to access on a random basis. They are xml files that contain user data I need to merge with rtf documents.
There will probably be less than 10 files, but more than 5. As I loop through a list of documents I will have to select the correct xml file for the merge. I have a cross mapping file that links the document name to the xml file, so I know which one I need as I loop, but I need all of them available as I will be switching constantly between the xml files during the looping process.
Is there a simple solution for this rather than using some open source cache?
Thanks,
James
java.util.Mapis your friend when you don’t need a full-grown cache.