On Thu, Jan 8, 2009 at 6:39 AM, Raymond Auge <[email protected]> wrote: ... > I do have a question of my own. How many strings in the repository is > too many? Or an overall size. Can they have a time-to-live? ...
There is currently no limit besides the available memory. There's also no expiry for them. StringResourceRepositoryImpl just uses a synchronized hashmap to store StringResource instances. But StringResourceRepository is an interface, so fancier implementations are possible. You would just have to set the string.resource.loader.repository.class property or manually set the repo via: StringResourceLoader.setRepository(StringResourceLoader.REPOSITORY_NAME_DEFAULT, myStringResourceRepo); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
