Re: HTTP2 Server Push with Django?

2016-07-01 Thread Alcides Viamontes E
Take a look to ShimmerCat and it's Django support: https://www.shimmercat.com/en/info/articles/guides-django/ ShimmerCat's raison d'etre is to be a viable alternative to CDNs for lowering the effects of latency in webpages. But regarding your question: - It implements HTTP/2 Push - It

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
No these are for push at the app layer, for functionality purposes. HTTP/2 server push is meant for speeding up website responsiveness, by delivering static assets before the request for them are even made. -bobby > On Jun 28, 2016, at 12:34 PM, Mario R. Osorio wrote: >

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Mario R. Osorio
Here are some resources: - Django Push HTTP Response to users - Django Packages - django-push-notifications

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
The h2o server (https://h2o.examp1e.net) looks like it supports http/2 push, but it doesn’t have WSGI capability for Django. -bobby > On Jun 28, 2016, at 9:09 AM, Fabio C. Barrionuevo da Luz > wrote: > > as far as I know, there is still no any web server that fully

Re: HTTP2 Server Push with Django?

2016-06-28 Thread Fabio C. Barrionuevo da Luz
as far as I know, there is still no any web server that fully implements the "push" capability from HTTP2 specification. let me know if any web server now implements "push" capability completely On Tue, Jun 28, 2016 at 9:46 AM, Bobby Mozumder wrote: > Does anyone know of

HTTP2 Server Push with Django?

2016-06-28 Thread Bobby Mozumder
Does anyone know of an http/2 server with server push capability that can work with Django? It looks like nginx supports http2 with uWSGI, but it doesn’t actually support server push capability. I also found the h2o server, but it doesn’t look like it supports uWSGI yet.. Any other options