登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
代码拉取完成,页面将自动刷新
开源项目
>
程序开发
>
缓存组件
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
1.4K
Star
5.2K
Fork
1.8K
GVP
红薯
/
J2Cache
代码
Issues
117
Pull Requests
0
Wiki
统计
流水线
服务
JavaDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
byte2Object()方法的改进
已完成
#I9Z7
石头哥哥
创建于
2014-02-11 13:57
j2cache中byte2Object()使用的是jdk原生的序列化方案,网上有相关的序列化方案对比方案 ,研究了下 不妨推荐使用 https://github.com/flapdoodle-oss/de.flapdoodle.fast-serialization 试试 只需要使用FSTObjectOutput FSTObjectInput简单的替换,测试的数据性能相对来原生较好 以下是封装的简单的一个工具类。 ----------------------------------------------------------------------------------------------------------------------------------------- // Serialize /** * <p>Serializes an <code>Object</code> to a byte array for * storage/serialization.</p> * * @param obj the object to serialize to bytes * @return a byte[] with the converted Serializable * @throws JRedisCacheException (runtime) if the serialization fails */ public static byte[] serialize(Serializable obj) { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(512); serialize(obj, byteArrayOutputStream); return byteArrayOutputStream.toByteArray(); } /** * @param obj the object to serialize to bytes, may be null * @param byteArrayOutputStream the stream to write to, must not be null * @throws IllegalArgumentException if <code>outputStream</code> is <code>null</code> * @throws org.apache.commons.lang.SerializationException (runtime) if the serialization fails */ private static void serialize(Serializable obj, ByteArrayOutputStream byteArrayOutputStream) { if (byteArrayOutputStream == null) { throw new IllegalArgumentException("The OutputStream must not be null"); } FSTObjectOutput out = null; try { // stream closed in the finally out = new FSTObjectOutput(byteArrayOutputStream); out.writeObject(obj); out.flush(); } catch (IOException ex) { throw new JRedisCacheException(ex); } finally { try { if (out != null) { out.close(); out=null; } } catch (IOException ex) { // ignore close exception } } } // Deserialize //----------------------------------------------------------------------- /** * <p>Deserializes a single <code>Object</code> from an array of bytes.</p> * * @param objectData the serialized object, must not be null * @return the deserialized object * @throws IllegalArgumentException if <code>objectData</code> is <code>null</code> * @throws JRedisCacheException (runtime) if the serialization fails */ public static Object deserialize(byte[] objectData) { if (objectData == null) { throw new IllegalArgumentException("The byte[] must not be null"); } ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(objectData); return deserialize(byteArrayInputStream); } /** * <p>Deserializes an <code>Object</code> from the specified stream.</p> * * <p>The stream will be closed once the object is written. This * avoids the need for a finally clause, and maybe also exception * handling, in the application code.</p> * * <p>The stream passed in is not buffered internally within this method. * This is the responsibility of your application if desired.</p> * * @param byteArrayInputStream the serialized object input stream, must not be null * @return the deserialized object * @throws IllegalArgumentException if <code>inputStream</code> is <code>null</code> * @throws JRedisCacheException (runtime) if the serialization fails */ private static Object deserialize(ByteArrayInputStream byteArrayInputStream) { if (byteArrayInputStream == null) { throw new IllegalArgumentException("The InputStream must not be null"); } FSTObjectInput in = null; try { // stream closed in the finally in = new FSTObjectInput(byteArrayInputStream); return in.readObject(); } catch (ClassNotFoundException ex) { throw new JRedisCacheException(ex); } catch (IOException ex) { throw new JRedisCacheException(ex); } finally { try { if (in != null) { in.close(); in=null; } } catch (IOException ex) { // ignore close exception } } }
j2cache中byte2Object()使用的是jdk原生的序列化方案,网上有相关的序列化方案对比方案 ,研究了下 不妨推荐使用 https://github.com/flapdoodle-oss/de.flapdoodle.fast-serialization 试试 只需要使用FSTObjectOutput FSTObjectInput简单的替换,测试的数据性能相对来原生较好 以下是封装的简单的一个工具类。 ----------------------------------------------------------------------------------------------------------------------------------------- // Serialize /** * <p>Serializes an <code>Object</code> to a byte array for * storage/serialization.</p> * * @param obj the object to serialize to bytes * @return a byte[] with the converted Serializable * @throws JRedisCacheException (runtime) if the serialization fails */ public static byte[] serialize(Serializable obj) { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(512); serialize(obj, byteArrayOutputStream); return byteArrayOutputStream.toByteArray(); } /** * @param obj the object to serialize to bytes, may be null * @param byteArrayOutputStream the stream to write to, must not be null * @throws IllegalArgumentException if <code>outputStream</code> is <code>null</code> * @throws org.apache.commons.lang.SerializationException (runtime) if the serialization fails */ private static void serialize(Serializable obj, ByteArrayOutputStream byteArrayOutputStream) { if (byteArrayOutputStream == null) { throw new IllegalArgumentException("The OutputStream must not be null"); } FSTObjectOutput out = null; try { // stream closed in the finally out = new FSTObjectOutput(byteArrayOutputStream); out.writeObject(obj); out.flush(); } catch (IOException ex) { throw new JRedisCacheException(ex); } finally { try { if (out != null) { out.close(); out=null; } } catch (IOException ex) { // ignore close exception } } } // Deserialize //----------------------------------------------------------------------- /** * <p>Deserializes a single <code>Object</code> from an array of bytes.</p> * * @param objectData the serialized object, must not be null * @return the deserialized object * @throws IllegalArgumentException if <code>objectData</code> is <code>null</code> * @throws JRedisCacheException (runtime) if the serialization fails */ public static Object deserialize(byte[] objectData) { if (objectData == null) { throw new IllegalArgumentException("The byte[] must not be null"); } ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(objectData); return deserialize(byteArrayInputStream); } /** * <p>Deserializes an <code>Object</code> from the specified stream.</p> * * <p>The stream will be closed once the object is written. This * avoids the need for a finally clause, and maybe also exception * handling, in the application code.</p> * * <p>The stream passed in is not buffered internally within this method. * This is the responsibility of your application if desired.</p> * * @param byteArrayInputStream the serialized object input stream, must not be null * @return the deserialized object * @throws IllegalArgumentException if <code>inputStream</code> is <code>null</code> * @throws JRedisCacheException (runtime) if the serialization fails */ private static Object deserialize(ByteArrayInputStream byteArrayInputStream) { if (byteArrayInputStream == null) { throw new IllegalArgumentException("The InputStream must not be null"); } FSTObjectInput in = null; try { // stream closed in the finally in = new FSTObjectInput(byteArrayInputStream); return in.readObject(); } catch (ClassNotFoundException ex) { throw new JRedisCacheException(ex); } catch (IOException ex) { throw new JRedisCacheException(ex); } finally { try { if (in != null) { in.close(); in=null; } } catch (IOException ex) { // ignore close exception } } }
评论 (
14
)
登录
后才可以发表评论
状态
已完成
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (
-
)
标签 (
-
)
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(3)
Java
1
https://gitee.com/ld/J2Cache.git
git@gitee.com:ld/J2Cache.git
ld
J2Cache
J2Cache
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册