jieter / django-tables2

django-tables2 - An app for creating HTML tables
https://django-tables2.readthedocs.io/en/latest/
Other
1.89k stars 428 forks source link

Feature request: exclude pagination parameters from export_url #950

Open mattbuff opened 6 months ago

mattbuff commented 6 months ago

Can pagination parameters be excluded from export_url? My rationale is that the presence of pagination parameters does not affect the resulting export, but it does cause cache misses. Excluding them could significantly improve caching performance for expensive exports.

For example, the following URLs produce the same download, but are considered different items by URL-based server-side caching systems.

/?page=2&_export=csv /?page=5&_export=csv

jieter commented 3 months ago

Seems very reasonable, PRs welcome!