[DOCS] Remove poor link from painless.md (#127544)

This commit is contained in:
Lisa Cawley 2025-04-30 07:12:26 -07:00 committed by GitHub
parent aa309515f8
commit 0b3397d6a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ mapped_pages:
You can use Painless anywhere scripts are used in Elasticsearch. Painless provides:
* Fast performance: Painless scripts [ run several times faster](https://benchmarks.elastic.co/index.md#search_qps_scripts) than the alternatives.
* Safety: Fine-grained allowlist with method call/field granularity. See the [Painless API Reference](https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-api-reference.html) for a complete list of available classes and methods.
* Safety: Fine-grained allowlist with method call/field granularity.
* Optional typing: Variables and parameters can use explicit types or the dynamic `def` type.
* Syntax: Extends a subset of Javas syntax to provide additional scripting language features.
* Optimizations: Designed specifically for Elasticsearch scripting.