├── .github └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── TODO ├── djangobench ├── __init__.py ├── base_settings.py ├── benchmarks │ ├── default_middleware │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── views.py │ ├── form_clean │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── form_create │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── l10n_render │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ └── templates │ │ │ └── list.html │ ├── locale_from_request │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── model_creation │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── model_delete │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── model_save_existing │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── model_save_new │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── multi_value_dict │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── qs_filter_chaining │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_aggregate │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_all │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_all_converters │ │ ├── .benchmark.py.swo │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_all_multifield │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_annotate │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_complex_filter │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_count │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_dates │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_delete │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_delete_related │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_distinct │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_exclude │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_exists │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_filter │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_get │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_get_or_create │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_in_bulk │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_iterator │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_latest │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_none │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_order_by │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_prefetch_related │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_raw │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_raw_deferred │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_select_related │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_update │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_values │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── query_values_10000 │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── query_values_list │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── fixtures │ │ │ └── initial_data.json │ │ ├── models.py │ │ └── settings.py │ ├── raw_sql │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── startup │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── models.py │ │ └── settings.py │ ├── template_compilation │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── template_render │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── base_django_lte_13.html │ │ │ ├── base_django_lte_15.html │ │ │ ├── confirmation_message.html │ │ │ ├── footer.html │ │ │ ├── for_loop.html │ │ │ ├── header.html │ │ │ ├── permalink.html │ │ │ ├── permalink_django_lte_13.html │ │ │ ├── sidebar.html │ │ │ └── somefile.js │ │ ├── urls.py │ │ └── views.py │ ├── template_render_simple │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py │ ├── url_resolve │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── views.py │ ├── url_resolve_flat │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ └── urls.py │ ├── url_resolve_flat_i18n_off │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ └── urls.py │ ├── url_resolve_nested │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── settings.py │ │ └── urls.py │ └── url_reverse │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── settings.py ├── main.py ├── perf.py └── utils.py ├── setup.cfg └── setup.py /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | django-* 3 | *.swp 4 | *.egg-info 5 | dist/ 6 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/TODO -------------------------------------------------------------------------------- /djangobench/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/base_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/base_settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/default_middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/default_middleware/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/default_middleware/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/default_middleware/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/default_middleware/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/default_middleware/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/default_middleware/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/default_middleware/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/default_middleware/views.py -------------------------------------------------------------------------------- /djangobench/benchmarks/form_clean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/form_clean/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/form_clean/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/form_clean/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | -------------------------------------------------------------------------------- /djangobench/benchmarks/form_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/form_create/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/form_create/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/form_create/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | -------------------------------------------------------------------------------- /djangobench/benchmarks/l10n_render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/l10n_render/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/l10n_render/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/l10n_render/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/l10n_render/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/l10n_render/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/l10n_render/templates/list.html -------------------------------------------------------------------------------- /djangobench/benchmarks/locale_from_request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/locale_from_request/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/locale_from_request/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/locale_from_request/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | ROOT_URLCONF = None 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_creation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_creation/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_creation/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_creation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_creation/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_creation/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['model_creation'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_delete/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_delete/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_delete/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_delete/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_delete/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['model_delete'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_existing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_existing/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_save_existing/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_existing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_save_existing/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_existing/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['model_save_existing'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_new/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_new/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_save_new/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_new/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/model_save_new/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/model_save_new/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['model_save_new'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/multi_value_dict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/multi_value_dict/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/multi_value_dict/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/multi_value_dict/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | -------------------------------------------------------------------------------- /djangobench/benchmarks/qs_filter_chaining/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/qs_filter_chaining/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/qs_filter_chaining/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/qs_filter_chaining/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/qs_filter_chaining/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/qs_filter_chaining/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['qs_filter_chaining'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_aggregate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_aggregate/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_aggregate/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_aggregate/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_aggregate/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_aggregate/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_aggregate/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_aggregate/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_aggregate'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_all'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_converters/.benchmark.py.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all_converters/.benchmark.py.swo -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_converters/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all_converters/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_converters/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all_converters/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_converters/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_all_converters'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_multifield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_multifield/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all_multifield/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_multifield/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_all_multifield/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_all_multifield/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_all_multifield'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_annotate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_annotate/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_annotate/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_annotate/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_annotate/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_annotate/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_annotate/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_annotate/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_annotate'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_complex_filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_complex_filter/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_complex_filter/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_complex_filter/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_complex_filter/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_complex_filter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_complex_filter/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_complex_filter/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_complex_filter'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_count/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_count/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_count/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_count/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_count/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_count/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_count/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_count/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_count'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_dates/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_dates/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_dates/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_dates/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_dates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_dates/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_dates/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_dates'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_delete/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_delete/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_delete'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete_related/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_delete_related/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete_related/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_delete_related/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_delete_related/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_delete_related'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_distinct/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_distinct/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_distinct/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_distinct/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_distinct/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_distinct/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_distinct/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_distinct/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_distinct'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exclude/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exclude/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exclude/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exclude/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exclude/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exclude/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exclude/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exclude/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_exclude'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exists/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exists/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exists/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exists/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exists/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_exists/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_exists/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_exists'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_filter/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_filter/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_filter/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_filter/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_filter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_filter/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_filter/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_filter'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_get/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_get/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_get/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_get'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get_or_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get_or_create/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_get_or_create/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get_or_create/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_get_or_create/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_get_or_create/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_get_or_create'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_in_bulk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_in_bulk/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_in_bulk/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_in_bulk/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_in_bulk/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_in_bulk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_in_bulk/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_in_bulk/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_in_bulk'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_iterator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_iterator/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_iterator/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_iterator/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_iterator/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_iterator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_iterator/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_iterator/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_iterator'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_latest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_latest/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_latest/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_latest/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_latest/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_latest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_latest/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_latest/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_latest'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_none/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_none/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_none/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_none/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_none/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_none/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_none'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_order_by/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_order_by/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_order_by/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_order_by/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_order_by/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_order_by/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_order_by/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_order_by/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_order_by'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_prefetch_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_prefetch_related/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_prefetch_related/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_prefetch_related/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_prefetch_related/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_prefetch_related/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_prefetch_related'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_raw/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_raw/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_raw'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw_deferred/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw_deferred/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_raw_deferred/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw_deferred/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_raw_deferred/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_raw_deferred/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_raw_deferred'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_select_related/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_select_related/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_select_related/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_select_related/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_select_related/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_select_related/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_select_related/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_select_related'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_update/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_update/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_update/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_update/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_update/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_update/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_update/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_update'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_values'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_10000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_10000/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values_10000/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_10000/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values_10000/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_10000/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_values_10000'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_list/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values_list/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_list/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values_list/fixtures/initial_data.json -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_list/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/query_values_list/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/query_values_list/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['query_values_list'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/raw_sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/raw_sql/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/raw_sql/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/raw_sql/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/raw_sql/models.py -------------------------------------------------------------------------------- /djangobench/benchmarks/raw_sql/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['raw_sql'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/startup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/startup/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/startup/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/startup/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/startup/settings.py: -------------------------------------------------------------------------------- 1 | from djangobench.base_settings import * # NOQA 2 | 3 | INSTALLED_APPS = ['startup'] 4 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_compilation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_compilation/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_compilation/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_compilation/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_compilation/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/base.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/base_django_lte_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/base_django_lte_13.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/base_django_lte_15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/base_django_lte_15.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/confirmation_message.html: -------------------------------------------------------------------------------- 1 |
You've been confirmed
2 | {% include "for_loop.html" %} 3 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/footer.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/for_loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/for_loop.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/permalink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/permalink.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/permalink_django_lte_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/permalink_django_lte_13.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/sidebar.html -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/templates/somefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/templates/somefile.js -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render/views.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render_simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render_simple/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render_simple/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/template_render_simple/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/template_render_simple/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve/views.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat_i18n_off/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat_i18n_off/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat_i18n_off/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat_i18n_off/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat_i18n_off/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_flat_i18n_off/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_flat_i18n_off/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_nested/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_nested/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_nested/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_nested/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_nested/settings.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_resolve_nested/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_resolve_nested/urls.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobench/benchmarks/url_reverse/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_reverse/benchmark.py -------------------------------------------------------------------------------- /djangobench/benchmarks/url_reverse/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/benchmarks/url_reverse/settings.py -------------------------------------------------------------------------------- /djangobench/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/main.py -------------------------------------------------------------------------------- /djangobench/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/perf.py -------------------------------------------------------------------------------- /djangobench/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/djangobench/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/djangobench/HEAD/setup.py --------------------------------------------------------------------------------