> Hi,
>
> I currently use the gevent loop using base install of python 2.7 on ubuntu
> 12.04.
>
> I have an app that requires speed.  Can I use pypy with the gevent loop?
> Does this make sense?  Its not the async calls that are of issues  I just
> want to speed up the blocking code.  Looping though hashes etc........but
> have the power of uwsgi so I can make my redis py calls that are blocking
> in nature not blocking.
>
> I  the 32 bit world I uses pycho but I guess in  the 64 bit world...use
> pypy instead.
>
>
> Thanks
> _______________________________________________
>

pypy does not support gevent. It has an almost-working greenlet
implementation, but it is not enough to accomplish the same thing.

You may want to rewrite part of your code in another language (like lua)
and call them via the rpc subsystem, but i do not know if it is a viable
solution.

-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to