I didn't copy/paste code from PyPy benchmaks directly. I updated 3rd
party dependencies, I updated the code to use the perf API, and
sometimes I even fixed bugs in the benchmarks.
2016-10-11 2:22 GMT+02:00 Victor Stinner <victor.stinner(a)gmail.com>:
> * Add ``sqlalchemy_declarative`` and ``sqlalchemy_imperative`` benchmarks:
> SQLAlchemy Declarative and Imperative benchmarks using SQLite. Add
> ``SQLAlchemy`` dependency.
For these two new benchmarks, it's unclear to me if the purpose of the
benchmark is to test INSERT, SELECT or INSERT+SELECT.
Currently, the benchmark test INSERT+SELECT.
Compared to the PyPy benchmark, the benchmark now drops all rows of
the tables before each run to get more reproductible timings.
Victor