svn: /phpdoc/kr/trunk/reference/session/ ini.xml

[email protected] (Yu Ilho) Sat, 05 Sep 2015 23:13:20 +0000
Newsgroups php.doc.kr
Message-ID <[email protected]>
acidd15                                  Sat, 05 Sep 2015 23:13:20 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=337757

Log:
fix the build error

Changed paths:
    U   phpdoc/kr/trunk/reference/session/ini.xml

Modified: phpdoc/kr/trunk/reference/session/ini.xml
===================================================================
--- phpdoc/kr/trunk/reference/session/ini.xml	2015-09-05 14:05:56 UTC (rev 337756)
+++ phpdoc/kr/trunk/reference/session/ini.xml	2015-09-05 23:13:20 UTC (rev 337757)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 334727 Maintainer: progcom Status: ready -->
+<!-- EN-Revision: 337501 Maintainer: progcom Status: ready -->
+<!-- CREDITS: acidd15 -->
 <section xml:id="session.configuration" xmlns="http://docbook.org/ns/docbook">
  &reftitle.runtime;
  &extension.runtime;
@@ -215,6 +216,12 @@
       <entry>PHP_INI_PERDIR</entry>
       <entry>PHP 5.4.0부터 사용 가능.</entry>
      </row>
+     <row>
+      <entry><link linkend="ini.session.lazy-write">session.lazy_write</link></entry>
+      <entry>"1"</entry>
+      <entry>PHP_INI_ALL</entry>
+      <entry>Available since PHP 7.0.0.</entry>
+     </row>
    </tbody>
   </tgroup>
  </table>
@@ -281,6 +288,20 @@
       세션을 훔칠 수 있습니다.
      </para>
     </warning>
+    <caution>
+     <para>
+      When using the optional directory level argument <literal>N</literal>,
+      as described above, note that using a value higher than 1 or 2 is
+      inappropriate for most sites due to the large number of directories
+      required: for example, a value of 3 implies that <literal>64^3</literal>
+      directories exist on the filesystem, which can result in a lot of wasted
+      space and inodes.
+     </para>
+     <para>
+      Only use <literal>N</literal> greater than 2 if you are absolutely
+      certain that your site is large enough to require it.
+     </para>
+    </caution>
     <note>
      <simpara>
       PHP 4.3.6 이전에 윈도우 사용자가 PHP 세션 함수를 사용하려면, 이 값을
@@ -399,15 +420,6 @@
       사용하십시오.
      </para>
     </note>
-    <note>
-     <simpara>기본 파일 기반 세션 핸들러를 사용할 때, 파일시스템이 접근
-      시간(atime)을 추적할 수 있어야 합니다. 윈도우 FAT는 그렇지 않기에, FAT
-      파일시스템이나 atime 추적이 없는 다른 파일시스템에 세션을 저장할 경우
-      세션 쓰레기 수거를 다룰 다른 방법을 고려해야 합니다. PHP 4.2.3부터 atime
-      대신에 mtime(변경 시각)을 사용합니다. 그러므로, atime 추적이 없는
-      파일시스템에서도 문제가 없습니다.
-     </simpara>
-    </note>
    </listitem>
   </varlistentry>

@@ -853,6 +865,19 @@
     </simpara>
    </listitem>
   </varlistentry>
+
+  <varlistentry xml:id="ini.session.lazy-write">
+   <term>
+    <parameter>session.lazy_write</parameter>
+    <type>boolean</type>
+   </term>
+   <listitem>
+    <simpara>
+     <literal>session.lazy_write</literal>, when set to 1, means that session
+     data is only rewritten if it changes. Defaults to 1, enabled.
+    </simpara>
+   </listitem>
+  </varlistentry>

  </variablelist>
  </para>