Skip to main content

Extension of Python package pymemcache providing client configuration through pymemcache.json.

Project description

pymemcache-client

Extension of Python package pymemcache providing client configuration.

Badges

docs

Documentation Status License Status

info

Hits Contributors

tests

Travis-CI Build Status Code Coverage Status

package

PyPI Package latest release Supported versions

other

Requirements Status

Install

pip install pymemcache-client

Install Memcached

To run examples and tests locally upon “localhost”, memcached must be installed.

Install memcached using brew

$ brew install memcached

==> Installing memcached
==> Downloading https://homebrew.bintray.com/bottles/memcached-1.5.3.sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring memcached-1.5.3.sierra.bottle.tar.gz
==> Caveats
To have launchd start memcached now and restart at login:
  brew services start memcached
Or, if you don't want/need a background service you can just run:
  /usr/local/opt/memcached/bin/memcached
==> Summary
🍺  /usr/local/Cellar/memcached/1.5.3: 11 files, 198.7KB

Start memcached using brew

$ brew services start memcached

==> Successfully started `memcached` (label: homebrew.mxcl.memcached)

Architecture

Extension of Python package pymemcache returning from pymemcache.client.hash import HashClient and configured using either ~/.pymemcache.json or pymemcache.json.

Functionality

class PymemcacheClient: Prepare a Pymemcache Client using available configuration.

Configuration can be provided when creating an instance of this class by:

  • User-level file: ~/.pymemcache.json

  • Application-level file: ./pymemcache.json

  • Provided as file path value in JSON-format to parameter config_file

  • Provided as dict value in JSON-format to parameter config

Configuration

This is the expected configuration that can be provided to class PymemcacheClient is in JSON format:

{
    "client_type": "[OPTIONAL str, DEFAULT 'basic']",
    "servers": [
        {
            "host": "[str]",
            "port": [int]
        }
    ],
    "server_type": "[OPTIONAL str, DEFAULT 'standard']",
    "connect_timeout": [OPTIONAL float, Defaults to forever],
    "timeout": [OPTIONAL float, Defaults to forever],
    "no_delay": [OPTIONAL bool, DEFAULT false],
    "ignore_exc": [OPTIONAL bool, DEFAULT false],
    "default_noreply": [OPTIONAL bool, DEFAULT true],
    "allow_unicode_keys": [OPTIONAL bool, DEFAULT false]
}
  • "client_type": [OPTIONAL] Type of memcached client, DEFAULT "basic"
    • "basic": Memcached client using from pymemcache.client.base import Client. A client for a single memcached server.

    • "hash": Memcached client using from pymemcache.client.hash import HashClient. A client for communicating with a cluster of memcached servers.

  • "servers": A list of memcached servers and requiring at least one.
    • if "client_type" is "basic", then 1 server and only 1 is required.

    • if "client_type" is "hash", then 1 or more servers is required.

  • "server_type": Defining special needs for connect to memcached servers, DEFAULT "standard".
    • "standard": Pooling server connections using standard HTTP.

    • "elasticache": Pooling server connections using Auto Discovery through AWS Elasticache.

  • "connect_timeout": OPTIONAL float, seconds to wait for a connection to the memcached server. Defaults to “forever” (uses the underlying default socket timeout, which can be very long), i.e., the socket is put in blocking mode waiting to connect to memcached server.

  • "timeout": OPTIONAL float, OPTIONAL float, seconds to wait for send or recv calls on the socket connected to memcached. Defaults to “forever” (uses the underlying default socket timeout, which can be very long), i.e., the socket is put in blocking mode.

  • "no_delay": OPTIONAL bool, set the TCP_NODELAY flag, which may help with performance in some cases. DEFAULT false.

  • "ignore_exc": OPTIONAL bool, True to cause the “get”, “gets”, “get_many” and “gets_many” calls to treat any errors as cache misses. DEFAULT false.

  • "default_noreply": OPTIONAL bool, the DEFAULT value for 'noreply' as passed to store commands. DEFAULT true.

  • "allow_unicode_keys": OPTIONAL bool, support unicode (utf8) keys. DEFAULT false.

Dependencies

pymemcache-client module is built upon Python 3 and has dependencies upon several Python modules available within Python Package Index PyPI.

Release History

0.3.2 (2018-02-16)

  • Migrate to github/TuneLab

0.3.1 (2018-01-25)

  • migrate to github/tuneinc

0.3.0 (2017-12-10)

  • readthedocs.org

0.2.0 (2016-12-08)

  • Alpha

  • More robust JSON configuration

  • Handles pymemcache.client.hash.HashClient

  • Handles pymemcache.client.base.Client

0.1.0 (2016-12-07)

  • First Release

0.0.1 (2016-12-07)

  • Initial commit

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymemcache-client-0.3.2.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

pymemcache_client-0.3.2-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file pymemcache-client-0.3.2.tar.gz.

File metadata

File hashes

Hashes for pymemcache-client-0.3.2.tar.gz
Algorithm Hash digest
SHA256 72b8520012563fa8e39b7ff02b187d723d8b1781b7a581f2b51c6ebf65331ac6
MD5 13750c56acfdcc483be1497af67ce349
BLAKE2b-256 2b9d1a65aa8487ac30c43de697c8e84935b42abff6f9769b3984f15a2606516e

See more details on using hashes here.

File details

Details for the file pymemcache_client-0.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for pymemcache_client-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fac97bb27a596eaffb5022e3aab3b1bbe57f4c866da969d97c034057b98528f6
MD5 57a6eb27299040d46deba3cf6b083b01
BLAKE2b-256 4876bc22937e235d97bac9dcf6b3503674431bcbc8921f4201bf3af1aa6b19eb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page