> ## 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.

> جدول نظامي يحتوي على معلومات عن سجلات DNS المخزنة مؤقتًا.

# system.dns_cache

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

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

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

يحتوي على معلومات عن سجلات DNS المخزنة مؤقتًا.

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

* `hostname` ([String](/ar/reference/data-types/index)) — اسم المضيف.
* `ip_address` ([String](/ar/reference/data-types/index)) — عنوان IP.
* `ip_family` ([Enum8('IPv4' = 0, 'IPv6' = 1, 'UNIX\_LOCAL' = 2)](/ar/reference/data-types/index)) — عائلة عنوان IP.
* `cached_at` ([DateTime](/ar/reference/data-types/index)) — الطابع الزمني لتخزين السجل مؤقتًا.

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

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

| hostname  | ip\_address | ip\_family | cached\_at          |
| :-------- | :---------- | :--------- | :------------------ |
| localhost | ::1         | IPv6       | 2024-02-11 17:04:40 |
| localhost | 127.0.0.1   | IPv4       | 2024-02-11 17:04:40 |

<div id="see-also">
  ## انظر أيضًا
</div>

* [إعداد disable\_internal\_dns\_cache](/ar/reference/settings/server-settings/settings#disable_internal_dns_cache)
* [إعداد dns\_cache\_max\_entries](/ar/reference/settings/server-settings/settings#dns_cache_max_entries)
* [إعداد dns\_cache\_update\_period](/ar/reference/settings/server-settings/settings#dns_cache_update_period)
* [إعداد dns\_max\_consecutive\_failures](/ar/reference/settings/server-settings/settings#dns_max_consecutive_failures)
