Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

Commit dfc208f

Browse files
committed
Edited 080_Structured_Search/40_bitsets.asciidoc with Atlas code editor
1 parent 2024093 commit dfc208f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

080_Structured_Search/40_bitsets.asciidoc

+4-3
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,13 @@ performance benefits.
6565
Most _leaf filters_--those dealing directly with fields like the `term`
6666
filter--are cached, while((("leaf filters", "caching of")))((("caching", "of leaf filters, controlling")))((("filters", "controlling caching of"))) compound filters, like the `bool` filter, are not.
6767

68-
69-
NOTE: Leaf filters have to consult the inverted index on disk, so it makes sense to
68+
[NOTE]
69+
====
70+
Leaf filters have to consult the inverted index on disk, so it makes sense to
7071
cache them. Compound filters, on the other hand, use fast bit logic to combine
7172
the bitsets resulting from their inner clauses, so it is efficient to
7273
recalculate them every time.
73-
74+
====
7475

7576
Certain leaf filters, however, are not cached by default, because it
7677
doesn't make sense to do so:

0 commit comments

Comments
 (0)