summaryrefslogtreecommitdiff
path: root/benchmarks/basic_operations.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove explicit position numbers in format strings placeholdersJon Dufresne2018-11-031-1/+1
| | | | All Python versions can handled ordered placeholders.
* pycodestyle changes in benchmarkingRoey Prat2018-10-281-0/+1
|
* pep8 cleanupChris Simpson2016-06-121-0/+2
|
* Cache Token objects to improve performance.Chris Simpson2016-06-121-0/+197
The Token class now contains a cache of tokens, and each token stores its encoded value. In Python 3 this prevents encoding the Token commands (get, set, incr, etc...) repeatly. There is also a smaller performance improvement by creating fewer objects. A very basic benchmark script was also added.