Skip to content

Document Memcached::OPT_NOREPLY #584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions reference/memcached/constants.xml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,19 @@
</listitem>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    <para>Enables or disables asynchronous I/O. This is the fastest transport
     available for storage functions.</para>
    <para>Type: <literal>boolean</literal>, default: &false;.</para>

i.e. there'll be a mix of boolean and bool - does the translation system have issues with replacing literals?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does not replace literals at all (it's just about the markup).

</varlistentry>

<varlistentry xml:id="memcached.constants.opt-noreply">
<term><constant>Memcached::OPT_NOREPLY</constant></term>
<listitem>
<para>
Enable this to ignore the result of storage commands
(set, add, replace, append, prepend, delete, increment, decrement, etc.).
Storage commands will be sent without spending time waiting for a reply
(there would be no reply).
Retrieval commands such as <function>Memcached::get</function> are unaffected by this setting.</para>
<para>Type: &boolean;, default: &false;.</para>
</listitem>
</varlistentry>

<varlistentry xml:id="memcached.constants.opt-tcp-nodelay">
<term><constant>Memcached::OPT_TCP_NODELAY</constant></term>
<listitem>
Expand Down