#34314 closed Uncategorized (invalid)

pymemcached noreply support

Reported by: Matej Spiller Muys Owned by: nobody
Component: Core (Cache system) Version: 4.1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Memcache supports noreply flag on set call (cas, set, set_many).
It would be beneficial to be able to set noreply flag on each call.

    def set(
        self,
        key: Key,
        value: Any,
        expire: int = 0,
        noreply: Optional[bool] = None,
        flags: Optional[int] = None,
    ) -> Optional[bool]:

Change History (1)

comment:1 by Mariusz Felisiak, 20 months ago

Component: UncategorizedCore (Cache system)
Resolution: invalid
Status: newclosed

You can set default_noreply in OPTIONS to use noreply by default, see docs.

Note: See TracTickets for help on using tickets.
Back to Top