我有一个Hazelcast集群。它具有序列化存储在其中的数据,即实现serialVersionUUID
的类的Java对象。这个班级没有class TagsController < ApplicationController
def index
@tags = Tag.all
end
def show
@tag = Tag.find(params[:id])
@destinations = @tag.destinations
end
end
。该类的结构已经改变,Hazelcast中的数据不能再被反序列化。
除了恢复更改(不是选项)或刷新Hazelcast(不理想)之外还有安全保存数据吗?
答案 0 :(得分:1)
我建议你查看Hazelcast(https://hazelcast.com/resources/mastering-hazelcast/)中关于序列化的第9章。