Skip to content

Instantly share code, notes, and snippets.

@NazCodeland
Created October 28, 2024 12:36
Show Gist options
  • Save NazCodeland/7aad14c89490361f26052fc0508ca760 to your computer and use it in GitHub Desktop.
Save NazCodeland/7aad14c89490361f26052fc0508ca760 to your computer and use it in GitHub Desktop.
The scope of factors to keep an eye on when assessing and optimizing performance
  1. Network Latency: Speed of data travel between client and server.
  2. Server Load: Concurrent users and requests.
  3. Bandwidth: Data transfer rate.
  4. Code Efficiency: Optimization of application code.
  5. Database Performance: Query efficiency and load.
  6. Disk I/O: Speed of disk read/write operations.
  7. Memory Usage: RAM consumption.
  8. CPU Load: Processing power for requests.
  9. Concurrency Handling: Managing multiple operations.
  10. Caching: Reducing load times with caches.
  11. Application Architecture: Design patterns and modularity.
  12. Resource Allocation: Available CPU, memory, and disk space.
  13. Client-Side Processing: Efficiency of browser-side JavaScript.
  14. Third-Party Services: Performance of dependent APIs/services.
  15. Environmental Factors: Server location, redundancy, and failover capabilities.

Thanks to ChatGPT

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment