Lu Xugang

Results 25 comments of Lu Xugang

> 拜读大神文章,点开其中一篇博客分享的[文章链接](https://www.elastic.co/cn/blog/save-space-and-money-with-improved-storage-efficiency-in-elasticsearch-7-10),发现里面有个Deflate压缩功能,想问问大神有没有Deflate相关文章介绍说明 Deflater是JDK自带的压缩工具,目前没有相关文章介绍哦

@dptong `MatchAllDocsQuery` 不需要重写query,这个query命中的doc id 的范围就是 0~ IndexReader.maxDoc()呀 IndexReader.maxDoc()的值存放在 [.si索引文件](https://www.amazingkoala.com.cn/Lucene/suoyinwenjian/2019/0605/63.html)中的`segSize`中:

> 是不是也有空间放大的问题 能发下链接 我了解下你说的这个问题吗

> lucene里面使用SkipList来加速查找速度,使用有序数组进行两分查找是否比SkipList快 是因为SkipList对于增删的效率比有序数组更快吗? https://www.amazingkoala.com.cn/Lucene/Index/2020/0106/124.html

> The logic makes sense to me but it's a bit hard to read, could we avoid touching `getDocIdSetIteratorOrNull` and only have new logic in the `Weight#count` impl? Thank you...