我正在尝试将大型数据库查询结果存储在 memcached 服务器中以便更快地检索,并在使用brotli进入 memcache 之前压缩数据。
我一直在尝试使用这样的示例对象进行测试:
//cacheserver already defined and connected
let brotli_config = {
mode: 1, //0=regular, 1=text
quality: 8 //1=fast .. 11=small
}
let test_key = 'paths_100'
let test_value = [
{
text: 'this is text',
outlines: 'this is an outline',
inlines: 'this is an inline'
}
]
let compressed_in = require('brotli/compress')(JSON.stringify(test_value), brotli_config)
console.log(compressed_in) //LOG 1
cacheserver.set(test_key, compressed_in, {
expires: 3600
},
function(err) {
cacheserver.get(test_key, function(err, compressed_out) {
console.log(compressed_out) //LOG 2
let string_out = require('brotli/decompress')(compressed_out)
console.log(string_out) //LOG 3
})
}
)
这是输出:
//LOG 1
Uint8Array(10) [
27, 86, 0, 0, 36,
0, 2, 177, 64, 32
]
//LOG 2
<Buffer 1b 56 00 00 24 00 02 b1 40 20>
//LOG 3
Uint8Array(87) [
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0
]
我正在将对象转换为字符串(对于性能来说可能不是一个好主意,但是使用 brotli 模式 0 并且不进行字符串化不起作用;返回 null ...),压缩它,将 10 条目 uint8array 存储在缓存中服务器,检索一个 10 字节的缓冲区,并解压缩它。但是,解压缩的结果只是一个零数组。这里发生了什么事?我是第一次使用这个压缩库和 memcached 客户端 ( memjs ),所以任何关于如何正确使用它们的信息都非常感谢。