benchmark_config 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "framework": "AsyncIO",
  3. "tests": [{
  4. "default": {
  5. "setup_file": "setup",
  6. "json_url": "/json",
  7. "db_url": "/db",
  8. "query_url": "/queries?queries=",
  9. "fortune_url": "/fortunes",
  10. "update_url": "/updates?queries=",
  11. "plaintext_url": "/plaintext",
  12. "port": 8008,
  13. "approach": "Realistic",
  14. "classification": "Micro",
  15. "database": "Postgres",
  16. "framework": "aiohttp.web",
  17. "language": "Python",
  18. "orm": "Raw",
  19. "platform": "API-Hour",
  20. "webserver": "Gunicorn",
  21. "os": "Linux",
  22. "database_os": "Linux",
  23. "display_name": "API-Hour+aiohttp.web+pgsql",
  24. "notes": "Python 3 + API-Hour + AsyncIO + aiohttp.web + PostgreSQL"
  25. },
  26. "redis": {
  27. "setup_file": "setup",
  28. "db_url": "/db_redis",
  29. "query_url": "/queries_redis?queries=",
  30. "fortune_url": "/fortunes_redis",
  31. "update_url": "/updates_redis?queries=",
  32. "port": 8008,
  33. "approach": "Realistic",
  34. "classification": "Micro",
  35. "database": "Redis",
  36. "framework": "aiohttp.web",
  37. "language": "Python",
  38. "orm": "Raw",
  39. "platform": "API-Hour",
  40. "webserver": "Gunicorn",
  41. "os": "Linux",
  42. "database_os": "Linux",
  43. "display_name": "API-Hour+aiohttp.web+redis",
  44. "notes": "Python 3 + API-Hour + AsyncIO + aiohttp.web + Redis"
  45. },
  46. "json": {
  47. "setup_file": "setup",
  48. "json_url": "/json",
  49. "port": 8009,
  50. "approach": "Stripped",
  51. "classification": "Platform",
  52. "database": "None",
  53. "framework": "AsyncIO",
  54. "language": "Python",
  55. "orm": "Raw",
  56. "platform": "API-Hour",
  57. "webserver": "Gunicorn",
  58. "os": "Linux",
  59. "database_os": "Linux",
  60. "display_name": "API-Hour+AsyncIO",
  61. "notes": "Python 3 + API-Hour + AsyncIO"
  62. },
  63. "plaintext": {
  64. "setup_file": "setup",
  65. "plaintext_url": "/plaintext",
  66. "port": 8011,
  67. "approach": "Stripped",
  68. "classification": "Platform",
  69. "database": "None",
  70. "framework": "AsyncIO",
  71. "language": "Python",
  72. "orm": "Raw",
  73. "platform": "API-Hour",
  74. "webserver": "Gunicorn",
  75. "os": "Linux",
  76. "database_os": "Linux",
  77. "display_name": "API-Hour+AsyncIO",
  78. "notes": "Python 3 + API-Hour + AsyncIO"
  79. }
  80. }]
  81. }