Developer Roadmap
/Learn A Framework
TopicStep 64 filesOpen folder on GitHub

Learn A Framework

1.synchronous.md
View on GitHub

SYNCHRONOUS FRAMEWORK

  • Request - tunggu - response (blocking)
  • Setiap request hanya bisa dikerjakan satu per satu per worker
  • Dengan ini
    • Lebih mudah dipahami
    • Cocok untuk aplikasi kecil
    • Debugging lebih mudah
    • Banyak library yang synchronous
  • Tapi
    • Kurang cocok untuk traffic besar
    • Tidak efisien untuk I/O heavy apps (API, DB, external HTTP)

Framework

  • Plotly Dash
    • Framework untuk membuat dashboard interaktif berbasis python
    • Biasanya untuk data science dan BI apps
  • Pyramid
    • Framework modular dan fleksibel
    • Mirip flask tapi lebih enterprise level. Tidak terlalu terkenal sekarang.