> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> جدول نظامي يعرض محتويات ذاكرة التخزين المؤقت لشروط الاستعلام.

# system.query_condition_cache

<Info>
  **الاستعلام في ClickHouse Cloud**

  تُخزَّن بيانات جدول النظام هذا محليًا على كل عقدة في ClickHouse Cloud. لذلك، يتطلب الحصول على رؤية كاملة لجميع البيانات استخدام الدالة `clusterAllReplicas`. راجع [هنا](/ar/reference/system-tables/overview#system-tables-in-clickhouse-cloud) لمزيد من التفاصيل.
</Info>

<div id="description">
  ## الوصف
</div>

يعرض محتويات [ذاكرة التخزين المؤقت لشروط الاستعلام](/ar/concepts/features/performance/caches/query-condition-cache).

<div id="columns">
  ## الأعمدة
</div>

* `key_hash` ([UInt128](/ar/reference/data-types/index)) — قيمة التجزئة لـ (table\_uuid, part\_name, condition\_hash).
* `entry_size` ([UInt64](/ar/reference/data-types/index)) — حجم المدخل بالبايت.
* `matching_marks` ([String](/ar/reference/data-types/index)) — العلامات المتطابقة.

<div id="example">
  ## مثال
</div>

```sql title="Query" theme={null}
SELECT * FROM system.query_condition_cache FORMAT Vertical;
```

```text title="Response" theme={null}
Row 1:
──────
table_uuid:     28270a24-ea27-49f6-99cd-97b9bee976ac
part_name:      all_1_1_0
condition:      or(equals(b, 10000_UInt16), equals(c, 10000_UInt16))
condition_hash: 5456494897146899690 -- 5.46 quintillion
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

1 row in set. Elapsed: 0.004 sec.
```
