Skip to content

Mangum

ASGI Blog

  • Home
  • About
  • Blog
    • ASGI Basics
    • Python ASGI
    • About Servers
    • Coding
    • Applications
    • Requests
    • Trending articles
  • Contact
Search for:
  • Home/
  • Kelly Rex
code
  • Kelly Rex
  • March 18, 2024July 4, 2024
  • Coding

Exploring ASGI’s Protocol Agnosticism: Beyond HTTP

ASGI (Asynchronous Server Gateway Interface) has emerged as a versatile protocol that extends beyond traditional HTTP applications, offering support for diverse communication protocols such as WebSockets and more. [...]

Read More
programmer
  • Kelly Rex
  • March 5, 2024July 4, 2024
  • Coding

Developing Microservices with ASGI and FastAPI

Microservices architecture has gained popularity for building scalable and modular applications, where services are decoupled, independently deployable, and communicate via APIs. [...]

Read More
code
  • Kelly Rex
  • February 26, 2024July 4, 2024
  • Requests

ASGI in Action: Building a Chat Application

ASGI (Asynchronous Server Gateway Interface) has transformed Python web development by enabling real-time applications with high concurrency and asynchronous capabilities. [...]

Read More
code
  • Kelly Rex
  • February 19, 2024July 4, 2024
  • Requests

Monitoring and Logging in ASGI Applications

Monitoring and logging are essential practices for maintaining the health, performance, and security of ASGI (Asynchronous Server Gateway Interface) applications. [...]

Read More
code
  • Kelly Rex
  • February 18, 2024July 4, 2024
  • Requests

Advanced ASGI: Custom Middleware and Extensions

One of the powerful features of ASGI is the ability to create custom middleware and extensions, enhancing application functionality and customization. [...]

Read More
programmers
  • Kelly Rex
  • February 9, 2024July 4, 2024
  • Requests

Understanding the ASGI Lifespan Protocol

The ASGI (Asynchronous Server Gateway Interface) Lifespan Protocol defines a standard for managing the lifecycle of ASGI applications, handling events such as startup and shutdown. [...]

Read More
programmer
  • Kelly Rex
  • January 25, 2024July 4, 2024
  • Applications

Performance Tuning for ASGI Applications

Performance tuning is crucial for ensuring that ASGI (Asynchronous Server Gateway Interface) applications perform optimally under varying loads and conditions. [...]

Read More
coding
  • Kelly Rex
  • January 10, 2024July 4, 2024
  • Applications

Using ASGI with Django Channels for Asynchronous Tasks

Django Channels extends Django's capabilities by enabling asynchronous tasks and real-time web applications using ASGI (Asynchronous Server Gateway Interface). [...]

Read More
laptop
  • Kelly Rex
  • December 25, 2023July 4, 2024
  • Applications

Integrating ASGI with AWS Lambda for Serverless Applications

In the realm of modern web development, serverless computing has gained immense popularity for its scalability, cost-effectiveness, and ease of management. [...]

Read More
laptop
  • Kelly Rex
  • December 20, 2023July 4, 2024
  • Python ASGI

Scaling Your Python Applications with ASGI

Scaling Python applications has always been a crucial aspect of handling increasing user demands and maintaining performance. [...]

Read More

Posts navigation

  • 1
  • 2
  • 3
  • 4
  • 5

Recent Posts

  • Using ASGI for the Development of Real Casino Applications
  • Comparison of ASGI with Traditional WSGI: Advantages and Disadvantages
  • Building a Successful Online Casino: Application and Key Steps
  • The Benefits of Asynchronous Programming for Scalable Web Services
  • The Future of Technology: How ASGI is Changing the Approach to Web Application Development
  • Advanced Error Handling Techniques in ASGI Applications
  • Optimizing Real-Time Interactions: WebSockets with ASGI
  • Building High-Performance Web Applications with the Sanic Framework
  • Serverless Computing with Flask and AWS Lambda
  • Exploring Python’s Asynchronous Web Frameworks

Categories

  • About Servers
  • Applications
  • ASGI Basics
  • Coding
  • Python ASGI
  • Requests
  • Trending articles

Pages

  • Home
  • About
  • Contact
  • Privacy Policy

Categories

  • About Servers
  • Applications
  • ASGI Basics
  • Coding
  • Python ASGI
  • Requests
  • Trending articles

Recent Posts

  • Using ASGI for the Development of Real Casino Applications
  • Comparison of ASGI with Traditional WSGI: Advantages and Disadvantages
  • Building a Successful Online Casino: Application and Key Steps

ASGI is also designed to be a subset of WSGI, and there is a defined way to translate between the two, allowing WSGI programs to run on ASGI servers through a translation shell (provided in the asgiref library). The thread pool can be used to run synchronous WSGI programs outside of the asynchronous event loop.

Copyright 2024