I'm looking at Alfresco's logs while fetching documents and I can see that each time I try to retrieve the same doc (same ID), a GET request is made to the remote repository.
I ran a test where I explicitly call session.getDefaultContext().setCacheEnabled(true)
before calling session.getObject(id)
several times. It seems the cache is ignored as the GET command is issued each time.
Do you think there may be other properties that should be set on the session that I'm missing? Or maybe some xml configuration for Alfresco?
Thanks