Programming

PyPy

steloflute 2012. 5. 28. 23:30

http://pypy.org/


PyPy는 Python의 또다른 구현체로, JIT 기법을 써서 Python 프로그램을 빠르게 실행한다.


PyPy is a fastcompliant alternative implementation of the Python language (2.7.2). It has several advantages and distinct features:

  • Speed: thanks to its Just-in-Time compiler, Python programs often run faster on PyPy.(What is a JIT compiler?)
  • Memory usage: large, memory-hungry Python programs might end up taking less space than they do in CPython.
  • Compatibility: PyPy is highly compatible with existing python code. It supports ctypesand can run popular python libraries like twisted and django.
  • Sandboxing: PyPy provides the ability to run untrusted code in a fully secure way.
  • Stackless: PyPy comes by default with support for stackless mode, providing micro-threads for massive concurrency.
  • As well as other features.

'Programming' 카테고리의 다른 글

Is it possible to implement a Python for range loop without an iterator variable?  (0) 2012.05.29
PyDev - a Python IDE for Eclipse  (0) 2012.05.28
On Go: oh, go on  (0) 2012.05.28
(Javascript) shell run  (0) 2012.05.28
perl로 web page get  (0) 2012.05.28