TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Pilosa: open source, distributed bitmap index in Go

183 点作者 jaffee大约 8 年前

9 条评论

drfuchs大约 8 年前
Hint to the uninformed: don't look up "bitmap" and wonder why anyone would index them. Look up "bitmap index" instead. This will save you many clicks in the github project as well as in your favorite search engine. It's about databases, not pixels.
评论 #14259943 未加载
cejast大约 8 年前
This is exactly something I&#x27;ve been looking for to experiment with user segmentation, but crucially for fast, ad-hoc segmentation. Seems to bear some similarity to what Facebook [1] does for its audience insights.<p>[1] <a href="https:&#x2F;&#x2F;code.facebook.com&#x2F;posts&#x2F;382299771946304&#x2F;audience-insights-query-engine-in-memory-integer-store-for-social-analytics-&#x2F;" rel="nofollow">https:&#x2F;&#x2F;code.facebook.com&#x2F;posts&#x2F;382299771946304&#x2F;audience-ins...</a>
评论 #14261304 未加载
评论 #14259972 未加载
mrdmnd大约 8 年前
How does this compare to <a href="https:&#x2F;&#x2F;github.com&#x2F;RoaringBitmap&#x2F;CRoaring" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;RoaringBitmap&#x2F;CRoaring</a>?<p>Is the difference that this one is distributed?
评论 #14260351 未加载
评论 #14260402 未加载
daemonk大约 8 年前
Based on what I can gather from the data model, this would be great for categorical type data where there are a limited amount of categories for each event? Would this be fast for querying quantitative data where values might be unique?
评论 #14261099 未加载
solidsnack9000大约 8 年前
I appreciate how they developed a query language that is more code-like than SQL but still basically declarative and parsimonious.
bpicolo大约 8 年前
As I understand, this sort of index is roughly how Elasticsearch is able to do filters quite quickly after warmup. They store bitwise mappings of filter results on a document by document basis.<p>(That said, this is one ES thing that&#x27;s impossible to find documentation for).
jksmith大约 8 年前
Great way to encode discrete answers for qualitative survey data. Reads are smoking fast.
评论 #14260806 未加载
NKCSS大约 8 年前
I love the website[0] for the product; very pleasing.<p>[0]: <a href="https:&#x2F;&#x2F;www.pilosa.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.pilosa.com&#x2F;</a>
menegattig大约 8 年前
Very similar to S1Search:<p><a href="https:&#x2F;&#x2F;blog.slicingdice.com&#x2F;slicingdice-uncovered-part-2-s1search-33d2240a96c1" rel="nofollow">https:&#x2F;&#x2F;blog.slicingdice.com&#x2F;slicingdice-uncovered-part-2-s1...</a><p><a href="https:&#x2F;&#x2F;blog.slicingdice.com&#x2F;slicingdice-uncovered-part-3-s1search-in-depth-bb72f3955c27" rel="nofollow">https:&#x2F;&#x2F;blog.slicingdice.com&#x2F;slicingdice-uncovered-part-3-s1...</a>