User:Boris Tsirelson/Sandbox1: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Boris Tsirelson
No edit summary
imported>Boris Tsirelson
No edit summary
Line 1: Line 1:
Generally, a high-level interpreted scripting language is far not as fast as a compiled program. However, a specializing just-in-time compiler "Psyco"<ref>[http://psyco.sourceforge.net/ Psyco: High-level languages need not be slower than low-level ones.]</ref> runs existing Python programs much faster, with no change in the source text.
Generally, a high-level interpreted scripting language is far not as fast as a compiled program. However, a specializing just-in-time compiler "Psyco"<ref>[http://psyco.sourceforge.net/ Psyco: High-level languages need not be slower than low-level ones.]</ref> runs existing Python programs much faster, with no change in the source text. In addition, the Python library contains a number of modules performing useful operations quite effectively. For example, "Anydbm"<ref>[http://docs.python.org/release/2.5.2/lib/module-anydbm.html anydbm -- Generic access to DBM-style databases]</ref> can effectively maintain a large indexed file.


==Notes and references==
==Notes and references==
{{reflist}}
{{reflist}}

Revision as of 09:31, 31 August 2010

Generally, a high-level interpreted scripting language is far not as fast as a compiled program. However, a specializing just-in-time compiler "Psyco"[1] runs existing Python programs much faster, with no change in the source text. In addition, the Python library contains a number of modules performing useful operations quite effectively. For example, "Anydbm"[2] can effectively maintain a large indexed file.

Notes and references