This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
字符串匹配如何与模式集和数据集一起工作
模式集或数据集包含一组模式,并为每个模式分配一个唯一的索引。将策略应用于数据包时,表达式会标识要评估的字符串,运算符将该字符串与模式集或数据集中定义的模式进行比较,直到找到匹配项或比较所有模式。然后,根据其函数,运算符返回指示是否找到匹配模式的布尔值,或者返回与字符串匹配的模式的索引。
注意:本主题介绍了模式集的工作。数据集的工作方式相同。模式集和数据集之间的唯一区别是集中定义的模式类型。
考虑以下用例来了解如何将模式用于字符串匹配。
要确定 URL 后缀(目标文本)是否包含任何图像文件扩展名。如果不使用模式集,则必须定义一个复杂的表达式,如下所示:
HTTP.REQ.URL.SUFFIX.CONTAINS("svg") ¦¦ HTTP.REQ.URL.SUFFIX.CONTAINS("bmp") ¦¦ HTTP.REQ.URL.SUFFIX.CONTAINS("png") ¦¦
HTTP.REQ.URL.SUFFIX.CONTAINS("gif") ¦¦ HTTP.REQ.URL.SUFFIX.CONTAINS("tiff") ¦¦ HTTP.REQ.URL.SUFFIX.CONTAINS("jpg")
<!--NeedCopy-->
如果 URL 的后缀为“jpg”,则具有上述复合表达式,Citrix ADC 设备必须按顺序遍历整个复合表达式(从一个子表达式到下一个子表达式),以确定请求是否引用了 jpg 映像。下图显示了此过程中的步骤。
当复合表达式包含数百个子表达式时,上述过程是资源密集型的。更好的替代方法是调用模式集的表达式,如下图所示。
如上所示,在策略评估期间,运算符 (COUNS_ANY) 将请求中标识的字符串与模式集中定义的模式进行比较,直到找到匹配项。使用 Sample_Patset 表达式,通过六个子表达式进行的多次迭代减少到只有一个。
通过无需配置使用多个 OR 操作执行字符串匹配的复合表达式,模式集或数据集可简化配置并加速请求和响应的处理。
共享
共享
This Preview product documentation is Cloud Software Group Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Cloud Software Group Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Cloud Software Group product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.