Skip to content

Commit

Permalink
[DOCS] Updated memory considerations for p/c queries and filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvg committed Feb 26, 2014
1 parent 455fded commit 8d7d3e1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/filters/has-child-filter.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ The `has_child` filter also accepts a filter instead of a query:
[float]
==== Memory Considerations

With the current implementation, all `_id` values are loaded to memory
(heap) in order to support fast lookups, so make sure there is enough
memory for it.
With the current implementation, all `_parent` field values and all `_id`
field values of parent documents are loaded into memory (heap) via field data
in order to support fast lookups, so make sure there is enough memory for it.

[float]
==== Caching
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/filters/has-parent-filter.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ The `has_parent` filter also accepts a filter instead of a query:
[float]
==== Memory considerations

With the current implementation, all `_id` values are loaded to memory
(heap) in order to support fast lookups, so make sure there is enough
memory for it.
With the current implementation, all `_parent` field values and all `_id`
field values of parent documents are loaded into memory (heap) via field data
in order to support fast lookups, so make sure there is enough memory for it.

[float]
==== Caching
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/queries/has-child-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ inside the `has_child` query:
[float]
==== Memory Considerations

With the current implementation, all `_id` values are loaded to memory
(heap) in order to support fast lookups, so make sure there is enough
memory for it.
With the current implementation, all `_parent` field values and all `_id`
field values of parent documents are loaded into memory (heap) via field data
in order to support fast lookups, so make sure there is enough memory for it.
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/queries/has-parent-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ matching parent document. The score type can be specified with the
[float]
==== Memory Considerations

With the current implementation, all `_id` values are loaded to memory
(heap) in order to support fast lookups, so make sure there is enough
memory for it.
With the current implementation, all `_parent` field values and all `_id`
field values of parent documents are loaded into memory (heap) via field data
in order to support fast lookups, so make sure there is enough memory for it.
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/queries/top-children-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ same scope name that will work against the child documents. For example:
[float]
==== Memory Considerations

With the current implementation, all `_id` values are loaded to memory
(heap) in order to support fast lookups, so make sure there is enough
memory for it.
With the current implementation, all `_parent` field values and all `_id`
field values of parent documents are loaded into memory (heap) via field data
in order to support fast lookups, so make sure there is enough memory for it.

0 comments on commit 8d7d3e1

Please sign in to comment.