123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "framework": "aiohttp",
- "tests": [{
- "default": {
- "json_url": "/json",
- "db_url": "/db",
- "query_url": "/queries/",
- "fortune_url": "/fortunes",
- "update_url": "/updates/",
- "plaintext_url": "/plaintext",
- "port": 8080,
- "approach": "Realistic",
- "classification": "Micro",
- "database": "Postgres",
- "framework": "aiohttp",
- "language": "Python",
- "flavor": "Python3",
- "orm": "Full",
- "platform": "asyncio",
- "webserver": "gunicorn",
- "os": "Linux",
- "database_os": "Linux",
- "display_name": "aiohttp",
- "notes": "uses aiopg with sqlalchemy for database access"
- },
- "pg-raw": {
- "db_url": "/db",
- "query_url": "/queries/",
- "fortune_url": "/fortunes",
- "update_url": "/updates/",
- "port": 8080,
- "approach": "Realistic",
- "classification": "Micro",
- "database": "Postgres",
- "framework": "aiohttp",
- "language": "Python",
- "flavor": "Python3",
- "orm": "Raw",
- "platform": "asyncio",
- "webserver": "gunicorn",
- "os": "Linux",
- "database_os": "Linux",
- "display_name": "aiohttp-pg-raw",
- "notes": "uses asyncpg for database access",
- "versus": "default"
- }
- }]
- }
|