1 2 Previous Next 17 Replies Latest reply on Feb 5, 2007 10:52 AM by ben.wang

    removeObject do not fully remove when working with FileCache

    emailmsgbox

      with the same code from
      http://jboss.org/index.html?module=bb&op=viewtopic&t=96896

      I added a method to remove form the cache

       public static TestData delTest(Integer sipID) {
      
       return o = (TestData) myCache.removeObject(new Fqn(TEST,sipID));
      
       }
      


      the Object is not fully removed form the file system

      with the simple data object "TestData" , when I try to retrieve from the cache the deleted object I can NULL
      but with a more complex object I get a partial object

        1 2 Previous Next