Fix docs with `match_pattern` in dynamic templates

This commit is contained in:
Andrew Williams 2015-12-11 14:03:54 -06:00
parent 9ab168dbf6
commit e7127c9f6f
1 changed files with 5 additions and 4 deletions

View File

@ -148,13 +148,14 @@ PUT my_index/my_type/1
[[match-pattern]]
==== `match_pattern`
The `match_pattern` parameter behaves just like the `match` parameter, but
supports full Java regular expression matching on the field name instead of
simple wildcards, for instance:
The `match_pattern` parameter adjusts the behavior of the `match` parameter
such that it supports full Java regular expression matching on the field name
instead of simple wildcards, for instance:
[source,js]
--------------------------------------------------
"match_pattern": "^profit_\d+$"
"match_pattern": "regex",
"match": "^profit_\d+$"
--------------------------------------------------
[[path-match-unmatch]]