benchmark_config.json 1.3 KB

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