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-7/

{
  "context": "This criteria evaluates how well the engineer uses aioredis server management and administration functions to implement a Redis health monitoring system. The focus is exclusively on correct usage of aioredis API methods for server information retrieval, configuration management, client tracking, and performance analysis.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "Server Info Retrieval",
      "description": "Uses redis.info() method to retrieve server information including memory usage, connected clients, and uptime in the health_check function",
      "max_score": 15
    },
    {
      "name": "Database Size Query",
      "description": "Uses redis.dbsize() method to get the current number of keys in the database in the health_check function",
      "max_score": 10
    },
    {
      "name": "Server Time Retrieval",
      "description": "Uses redis.time() method to fetch server timestamp in the health_check function",
      "max_score": 8
    },
    {
      "name": "Memory Config Retrieval",
      "description": "Uses redis.config_get() method with appropriate pattern (e.g., '*memory*') to retrieve memory-related configuration parameters in the inspect_configuration function",
      "max_score": 10
    },
    {
      "name": "Timeout Config Retrieval",
      "description": "Uses redis.config_get() method with appropriate pattern (e.g., '*timeout*') to retrieve timeout-related configuration parameters in the inspect_configuration function",
      "max_score": 10
    },
    {
      "name": "Client List Retrieval",
      "description": "Uses redis.client_list() method to retrieve list of connected clients in the track_clients function, optionally with _type parameter for filtering",
      "max_score": 15
    },
    {
      "name": "Slowlog Entry Retrieval",
      "description": "Uses redis.slowlog_get() method with count parameter to retrieve slowlog entries in the analyze_performance function",
      "max_score": 10
    },
    {
      "name": "Slowlog Length Query",
      "description": "Uses redis.slowlog_len() method to get the total count of slowlog entries in the analyze_performance function",
      "max_score": 7
    },
    {
      "name": "Stats Info Retrieval",
      "description": "Uses redis.info('stats') method to retrieve statistics including total_commands_processed, instantaneous_ops_per_sec, keyspace_hits, and keyspace_misses in the analyze_performance function",
      "max_score": 15
    }
  ]
}