or run

tessl search
Log in

Version

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

tessl/pypi-aioredis

tessl install tessl/pypi-aioredis@2.0.0

asyncio (PEP 3156) Redis support

Agent Success

Agent success rate when using this tile

98%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.01x

Baseline

Agent success rate without this tile

97%

rubric.jsonevals/scenario-4/

{
  "context": "This criteria evaluates how well the engineer uses aioredis advanced set operations to implement a tag-based content filtering system. The focus is on proper usage of set operation storage methods and atomic cross-set movement.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "sinterstore usage",
      "description": "Uses aioredis sinterstore() method to compute and store set intersection results. This should be used in compute_intersection() to find items with ALL specified tags.",
      "max_score": 25
    },
    {
      "name": "sunionstore usage",
      "description": "Uses aioredis sunionstore() method to compute and store set union results. This should be used in compute_union() to find items with ANY specified tags.",
      "max_score": 25
    },
    {
      "name": "sdiffstore usage",
      "description": "Uses aioredis sdiffstore() method to compute and store set difference results. This should be used in compute_difference() to find items in the main set that are not in exclude sets.",
      "max_score": 25
    },
    {
      "name": "smove usage",
      "description": "Uses aioredis smove() method to atomically move items between sets. This should be used in move_item() to transfer an item from one tag set to another in a single atomic operation.",
      "max_score": 25
    }
  ]
}