expression.asciidoc 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. [[modules-scripting-expression]]
  2. === Lucene Expressions Language
  3. Lucene's expressions compile a `javascript` expression to bytecode. They are
  4. designed for high-performance custom ranking and sorting functions and are
  5. enabled for `inline` and `stored` scripting by default.
  6. [float]
  7. === Performance
  8. Expressions were designed to have competitive performance with custom Lucene code.
  9. This performance is due to having low per-document overhead as opposed to other
  10. scripting engines: expressions do more "up-front".
  11. This allows for very fast execution, even faster than if you had written a `native` script.
  12. [float]
  13. === Syntax
  14. Expressions support a subset of javascript syntax: a single expression.
  15. See the link:http://lucene.apache.org/core/6_0_0/expressions/index.html?org/apache/lucene/expressions/js/package-summary.html[expressions module documentation]
  16. for details on what operators and functions are available.
  17. Variables in `expression` scripts are available to access:
  18. * document fields, e.g. `doc['myfield'].value`
  19. * variables and methods that the field supports, e.g. `doc['myfield'].empty`
  20. * Parameters passed into the script, e.g. `mymodifier`
  21. * The current document's score, `_score` (only available when used in a `script_score`)
  22. You can use Expressions scripts for `script_score`, `script_fields`, sort scripts, and numeric aggregation
  23. scripts, simply set the `lang` parameter to `expression`.
  24. [float]
  25. === Numeric field API
  26. [cols="<,<",options="header",]
  27. |=======================================================================
  28. |Expression |Description
  29. |`doc['field_name'].value` |The value of the field, as a `double`
  30. |`doc['field_name'].empty` |A boolean indicating if the field has no
  31. values within the doc.
  32. |`doc['field_name'].min()` |The minimum value of the field in this document.
  33. |`doc['field_name'].max()` |The maximum value of the field in this document.
  34. |`doc['field_name'].median()` |The median value of the field in this document.
  35. |`doc['field_name'].avg()` |The average of the values in this document.
  36. |`doc['field_name'].sum()` |The sum of the values in this document.
  37. |`doc['field_name'].count()` |The number of values in this document.
  38. |=======================================================================
  39. When a document is missing the field completely, by default the value will be treated as `0`.
  40. You can treat it as another value instead, e.g. `doc['myfield'].empty ? 100 : doc['myfield'].value`
  41. When a document has multiple values for the field, by default the minimum value is returned.
  42. You can choose a different value instead, e.g. `doc['myfield'].sum()`.
  43. When a document is missing the field completely, by default the value will be treated as `0`.
  44. Boolean fields are exposed as numerics, with `true` mapped to `1` and `false` mapped to `0`.
  45. For example: `doc['on_sale'].value ? doc['price'].value * 0.5 : doc['price'].value`
  46. [float]
  47. === Date field API
  48. Date fields are treated as the number of milliseconds since January 1, 1970 and
  49. support the Numeric Fields API above, with these additional methods:
  50. [cols="<,<",options="header",]
  51. |=======================================================================
  52. |Expression |Description
  53. |`doc['field_name'].getYear()` |Year component, e.g. `1970`.
  54. |`doc['field_name'].getMonth()` |Month component (0-11), e.g. `0` for January.
  55. |`doc['field_name'].getDayOfMonth()` |Day component, e.g. `1` for the first of the month.
  56. |`doc['field_name'].getHourOfDay()` |Hour component (0-23)
  57. |`doc['field_name'].getMinutes()` |Minutes component (0-59)
  58. |`doc['field_name'].getSeconds()` |Seconds component (0-59)
  59. |=======================================================================
  60. The following example shows the difference in years between the `date` fields date0 and date1:
  61. `doc['date1'].getYear() - doc['date0'].getYear()`
  62. [float]
  63. === `geo_point` field API
  64. [cols="<,<",options="header",]
  65. |=======================================================================
  66. |Expression |Description
  67. |`doc['field_name'].empty` |A boolean indicating if the field has no
  68. values within the doc.
  69. |`doc['field_name'].lat` |The latitude of the geo point.
  70. |`doc['field_name'].lon` |The longitude of the geo point.
  71. |=======================================================================
  72. The following example computes distance in kilometers from Washington, DC:
  73. `haversin(38.9072, 77.0369, doc['field_name'].lat, doc['field_name'].lon)`
  74. In this example the coordinates could have been passed as parameters to the script,
  75. e.g. based on geolocation of the user.
  76. [float]
  77. === Limitations
  78. There are a few limitations relative to other script languages:
  79. * Only numeric, boolean, date, and geo_point fields may be accessed
  80. * Stored fields are not available