For saved filters in Jira, is the count pre-computed?

Ranjith Chaz April 25, 2021

Also, I would generally like to know if there are any optimisations done around saved filters

2 answers

2 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 25, 2021

Partly.  The data in the database is not built for reporting at all, but it is completely re-organised in the index.   The index is also not built for reporting, but it is built for searching and so the information like "number of results from a filter" is quickly available without having to run the filter against the database and count.

Exactly as Roberto says, the act of filtering has no effect on the data, it's completely read-only.

To "optimise" filters though, you just keep them as simple as possible.

1 vote
Answer accepted
Roberto Miasack
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2021

@Ranjith Chaz

The filter is always updated in real time. Whether saved or not, just redo the search.

What do you mean by optimizations?

awslabspl April 25, 2021

Sometimes simple querry like sorting issues by lets say priority, can malice domain.

Roberto Miasack
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2021

The action of just filtering does not interfere with the items. You can do this in a second action, if you wish. But filters work like queries.

Ranjith Chaz April 25, 2021

Thanks, @Roberto Miasack 

What do you mean by optimizations

Optimisations could be creating indexes based on the where clause of a saved filter. Looks like that is the case from @Nic Brough -Adaptavist- 's comment

Suggest an answer

Log in or Sign up to answer