> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# إعدادات خادم ClickHouse لـ index_uncompressed_*

> إعدادات خادم ClickHouse ضمن المجموعة المُنشأة index_uncompressed_*.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>النوع</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>القيمة الافتراضية</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          يمكن تغييره دون إعادة التشغيل
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

تُستخدم هذه الإعدادات لتهيئة خادم ClickHouse، وهي مُولَّدة تلقائيًا من الشفرة المصدرية لـ ClickHouse.

<div id="index_uncompressed_cache_policy">
  ## index\_uncompressed\_cache\_policy
</div>

<SettingsInfoBlock type="String" default_value="SLRU" changeable_without_restart="No" />اسم سياسة الذاكرة المؤقتة غير المضغوطة للفهرس الثانوي.

<div id="index_uncompressed_cache_size">
  ## index\_uncompressed\_cache\_size
</div>

<SettingsInfoBlock type="UInt64" default_value="0" changeable_without_restart="Yes" />

الحد الأقصى لحجم ذاكرة التخزين المؤقت للكتل غير المضغوطة الخاصة بفهارس `MergeTree`.

<Note>
  تعني القيمة `0` أن هذه الميزة معطّلة.

  يمكن تعديل هذا الإعداد أثناء التشغيل، ويُطبَّق مفعوله فورًا.
</Note>

<div id="index_uncompressed_cache_size_ratio">
  ## index\_uncompressed\_cache\_size\_ratio
</div>

<SettingsInfoBlock type="Double" default_value="0.5" changeable_without_restart="No" />حجم قائمة الانتظار المحمية (في حالة سياسة SLRU) في ذاكرة التخزين المؤقت غير المضغوطة للفهرس الثانوي، نسبةً إلى الحجم الإجمالي لذاكرة التخزين المؤقت.
