I need to have always up to date content of some file in my program I've created EMF resourceset Because resourceSet.getResource(resourceURI, true) takes a lot of time to proceed I store resourceSet in static field, so files can be cached.
I.e. once resourceSet.getResource(resourceURI, true) is called for some URI the file is cached in resourceSet.
The problem is that resourceSet doesn't update it's cache automatically:
I.e.:
resourceSet.getResource(resourceURI, true) // delete resourceURI from file system resourceSet.getResource(resourceURI, true) -> here I expect null, but old version of the file is returned
How to force resourceSet to update cache if needed?
i'm using org.eclipse.emf.ecore.resource.impl.ResourceSetImpl, but probably I need another version of ResourceSet that takes modificationStamps into account....