benchmark_config.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "framework": "aiohttp",
  3. "tests": [{
  4. "default": {
  5. "json_url": "/json",
  6. "db_url": "/db",
  7. "query_url": "/queries/",
  8. "fortune_url": "/fortunes",
  9. "update_url": "/updates/",
  10. "plaintext_url": "/plaintext",
  11. "port": 8080,
  12. "approach": "Realistic",
  13. "classification": "Micro",
  14. "database": "Postgres",
  15. "framework": "aiohttp",
  16. "language": "Python",
  17. "flavor": "Python3",
  18. "orm": "Full",
  19. "platform": "asyncio",
  20. "webserver": "gunicorn",
  21. "os": "Linux",
  22. "database_os": "Linux",
  23. "display_name": "aiohttp",
  24. "notes": "uses aiopg with sqlalchemy for database access"
  25. },
  26. "pg-raw": {
  27. "db_url": "/db",
  28. "query_url": "/queries/",
  29. "fortune_url": "/fortunes",
  30. "update_url": "/updates/",
  31. "port": 8080,
  32. "approach": "Realistic",
  33. "classification": "Micro",
  34. "database": "Postgres",
  35. "framework": "aiohttp",
  36. "language": "Python",
  37. "flavor": "Python3",
  38. "orm": "Raw",
  39. "platform": "asyncio",
  40. "webserver": "gunicorn",
  41. "os": "Linux",
  42. "database_os": "Linux",
  43. "display_name": "aiohttp-pg-raw",
  44. "notes": "uses asyncpg for database access",
  45. "versus": "default"
  46. }
  47. }]
  48. }