the-deep / server

Server for DEEP
https://app.thedeep.io/
GNU Affero General Public License v3.0
9 stars 3 forks source link

update geoarea filterset #1483

Open sudan45 opened 3 months ago

sudan45 commented 3 months ago

Objective

Optimize title search filter for faster loading

Current Scenario:

The current approach in the application for searching geoarea titles involves using the "icontains" method, which ends up fetching all mapped data indiscriminately.

Problem:

Loading data is taking longer than expected.

Proposed Solution:

Instead of using "icontains" for title searches, switch to "iexact" for a more efficient search method.