mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 06:25:07 +00:00
This adds a method to `Grok` that matches against sections offset from utf-8 byte arrays: ``` Map<String, Object> captures(byte[] utf8Bytes, int offset, int length) ``` This'll be useful for the grok-flavored runtime fields because they want to match against utf-8 encoded strings stored in a big array. And joni already supports this.