Package org.hibernate.util

Examples of org.hibernate.util.SimpleMRUCache


        factory.getProperties(),
        SoftLimitMRUCache.DEFAULT_SOFT_REF_COUNT
    );

    this.factory = factory;
    this.sqlParamMetadataCache = new SimpleMRUCache( maxStrongReferenceCount );
    this.planCache = new SoftLimitMRUCache( maxStrongReferenceCount, maxSoftReferenceCount );
  }
View Full Code Here


        Environment.QUERY_PLAN_CACHE_MAX_SOFT_REFERENCES,
        factory.getProperties(),
        SoftLimitMRUCache.DEFAULT_SOFT_REF_COUNT
    );
    this.factory = factory;
    this.sqlParamMetadataCache = new SimpleMRUCache( maxStrongReferenceCount );
    this.planCache = new SoftLimitMRUCache( maxStrongReferenceCount, maxSoftReferenceCount );

  }
View Full Code Here

        factory.getProperties(),
        SoftLimitMRUCache.DEFAULT_SOFT_REF_COUNT
    );

    this.factory = factory;
    this.sqlParamMetadataCache = new SimpleMRUCache( maxStrongReferenceCount );
    this.planCache = new SoftLimitMRUCache( maxStrongReferenceCount, maxSoftReferenceCount );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.util.SimpleMRUCache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.