Add benchmarking test suite and greatly improve performance in a few cases (#948)
* Add benchmarking test suite * Improve amortized time of model relation loads with a large number of rows * Improve performance of loading models with many related models * Improve performance of loading models with many related models to O(N)ish * Fix bug where N model creation with shared related model would build in N^2 time * Lower blocking time for queryset results * Add docstrings and streamline hash code Co-authored-by: haydeec1 <Eric.Haydel@jhuapl.edu>
This commit is contained in:
@ -112,6 +112,8 @@ dataclasses = { version = ">=0.6.0,<0.8 || >0.8,<1.0.0" }
|
||||
|
||||
# Performance testing
|
||||
yappi = "^1.4.0"
|
||||
pytest-benchmark = "^4.0.0"
|
||||
nest-asyncio = "^1.5.6"
|
||||
|
||||
pre-commit = "^2.20.0"
|
||||
|
||||
@ -146,7 +148,7 @@ disallow_untyped_defs = true
|
||||
disallow_incomplete_defs = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "tests.*"
|
||||
module = ["tests.*", "benchmarks.*"]
|
||||
disallow_untyped_calls = false
|
||||
disallow_untyped_defs = false
|
||||
disallow_incomplete_defs = false
|
||||
@ -156,11 +158,10 @@ module = "docs_src.*"
|
||||
ignore_errors = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = ["sqlalchemy.*", "asyncpg"]
|
||||
module = ["sqlalchemy.*", "asyncpg", "nest_asyncio"]
|
||||
ignore_missing_imports = true
|
||||
|
||||
[tool.yapf]
|
||||
based_on_style = "pep8"
|
||||
disable_ending_comma_heuristic = true
|
||||
split_arguments_when_comma_terminated = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user