Package com.caucho.distcache

Examples of com.caucho.distcache.CacheSerializer


   */
  @Override
  final public byte[] calculateValueHash(Object value,
                                          CacheConfig config)
  {
    CacheSerializer serializer = config.getValueSerializer();
    TempOutputStream os = null;
   
    try {
      os = new TempOutputStream();

      Sha256OutputStream mOut = new Sha256OutputStream(os);
      DeflaterOutputStream gzOut = new DeflaterOutputStream(mOut);

      serializer.serialize(value, gzOut);

      gzOut.finish();
      mOut.close();

      byte[] hash = mOut.getDigest();
View Full Code Here

TOP

Related Classes of com.caucho.distcache.CacheSerializer

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.