Dave Smith
Dave Smith
With 1.11.9, the size dropped from 172KB to 147KB in my app (15% reduction).
Have you tried using one of the webpack bundle visualization plugins? Might shed some light.
It looks like Angular2 has changed since this example was written, and this demo no longer works. I'll take a look and see if I can figure it out.
Woot! Can you submit a PR?
Thanks for looking into the performance of this demo. Your most significant change is the `localApply = false` for the call to `$timeout` with a local digest. I specifically chose...
@lgalfaso Also, did you see any improvement to the initial load speed with these changes? I do not.
Agreed on all points. This demo showed two things: 1. Initial DOM loading in Angular 1 is slow. 2. Global digests are slow. I think it showed those points well...
@ask That works for me.
Correction! This bug is actually in amqp/serialization.py (separate project). The version I have (1.4.9) assumes all **headers** are UTF-8 encoded with this code: ``` python def read_longstr(self): """Read a string...
Here's a minimal snippet that can repro this crash and put your Celery worker into an unrecoverable loop: ``` python my_task.apply_async(args=['test'], headers={'foo': '\x8d'}) ``` The `'\x8d` is not UTF-8, and...