Ctrl + k

or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/pylibmc@1.6.x
tile.json

tessl/pypi-pylibmc

tessl install tessl/pypi-pylibmc@1.6.0

Quick and small memcached client for Python

Agent Success

Agent success rate when using this tile

86%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.04x

Baseline

Agent success rate without this tile

83%

rubric.jsonevals/scenario-5/

{
  "context": "Evaluates whether the client factory uses pylibmc to construct ready-to-use cache clients across TCP, UDP, and UNIX transports. Confirms it flips the binary protocol switch appropriately and handles SASL authentication when credentials are provided.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "Pylibmc client",
      "description": "Uses pylibmc.Client to create the cache client from the provided server list instead of reimplementing transport handling.",
      "max_score": 30
    },
    {
      "name": "Transport strings",
      "description": "Passes TCP host:port values, udp:-prefixed addresses, and UNIX socket paths directly to pylibmc.Client so the library selects the appropriate transport without altering formats.",
      "max_score": 20
    },
    {
      "name": "Binary toggle",
      "description": "Respects config.use_binary by setting binary=True on pylibmc.Client when requested while leaving it False otherwise, even with mixed server definitions.",
      "max_score": 15
    },
    {
      "name": "SASL setup",
      "description": "When username and password are provided, enables binary protocol and supplies pylibmc.Client with username/password for SASL; rejects partial credentials before constructing the client.",
      "max_score": 25
    },
    {
      "name": "Ready for ops",
      "description": "Initializes the returned pylibmc client enough to perform basic set/get calls immediately (no extra manual socket configuration required).",
      "max_score": 10
    }
  ]
}