This project has retired. For details please refer to its Attic page.
Apache Chemistry - Understanding the client side cache
     
   
 

Understanding the client side cache

Client side caching is turned on by default. That is, getObject() will first look into the session cache if the object already exists there. If this is the case, it returns the object without talking to the repository. So it might return stale objects.

There are multiple ways to deal with that:

  • Refresh the object data that is returned from getObject().

     

      CmisObject object = session.getObject(id);
      object.refresh(); // contacts the repository and refreshes the object
      object.refreshIfOld(60 * 1000); // ... or refreshes the object only if the data is older than a minute
    
  • Turn off the session cache completely.

     

      session.getDefaultContext().setCacheEnabled(false);
    
  • Turn off caching for this getObject() call.

     

      OperationContext oc = session.createOperationContext();
      oc.setCacheEnabled(false);
      
      CmisObject object = session.getObject(id, oc);
    
  • Clear the session cache (not recommended).

     

      session.clear();