gpt4 book ai didi

scala - 如何从 Google Guava 序列化布隆过滤器?

转载 作者:行者123 更新时间:2023-12-02 03:12:00 26 4
gpt4 key购买 nike

我正在尝试使用 Google Guava 的 Bloom 过滤器并使用 Scala 对其进行序列化。创建它很容易:

import com.google.common.hash.{BloomFilter,Funnels}
val b = BloomFilter.create(Funnels.unencodedCharsFunnel,5e8.toLong,1e-6)

但我不明白如何序列化它。期待一个 BloomFilter.serialize 方法,但没有。我错过了什么?

该点试图将 Bloom 过滤器转换为 Array[Byte]..

最佳答案

你试过吗:

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import com.google.common.hash.{BloomFilter,Funnels}

val b = BloomFilter.create(Funnels.unencodedCharsFunnel,5e8.toLong,1e-6)

val stream = new ObjectOutputStream(new FileOutputStream(
"/path/to/file/file.obj"))

stream.writeObject(b)

关于scala - 如何从 Google Guava 序列化布隆过滤器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39479691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com