Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Should I use filter() instead of search()

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
performance
2 Risposte
12537 Visualizzazioni
Avatar
Francesco Ballerini

EDIT --> Probably I should have print the return of model.filtered(function) before asking because I discovered that if you don't make a search() before filtered you just get the model object in return, not a recordset. So basically you have to search/browse first, no matter what. 


I still wonder if it's better to get subrecords with a second search or filtered function. 

I think we should absolutely avoid to use search() or filtered() in loops, but I see that search() seems to be more efficient for a little number of iterations, while filtered seems to be slightly better for a large number.. might that be a reason to prefer filtered over search? 

___________________________________________________________________________________________________

Hello everyone, I'm testing performance for my project and I'm trying to figure out cases when i should use search() instead of filtered(). 


I ask because of 2 reasons:  

1) I did some tests and I can see that generally self.env['model.name'].filtered()  is much faster than  self.env['model.name'].search([])


For example, 


variable = self.env['model.name'].search([('name', '=', 'value')])

is about 800 microseconds for me, EVEN IF i already istantiated model or recordset with another search and perform search() on the model or recordset (in the latter case is like 600 microseconds but still worse than filtered)


When


variable = self.env['model.name'].filtered(lambda r: r.name == name) 

is about 250 microseconds.

And if I try to iterate n times the instructions, the results are basically the same.


2) BUT i also see that in Odoo source code, models recordsets are firstly fetched by using search() or browse() , and only then the results are filtered.


Now, from what I understand, one problem of filtered() might be that if I need to fetch the full recordset of a model to be able loop through it, I probably need to use search (or maybe browse) because I don't think there is a way to get the full recordset out the filtered method.


But in other situations, where I just need to fetch a subrecordset or even a single record, why not directly use filtered if it's faster instead of make a search() and then filter it later? Can some one explain? I find very poor explanations about it. Thanks! 


0
Avatar
Abbandona
Francesco Ballerini
Autore

Thanks Cybrosys, so basically with search() you're fetching from database while filtered() doesn't make a query. Interesting.

By the way, your tutorials are very helpful!

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Risposta migliore

Hi.

As you said .filtered() is faster than .search()
.filtered() is used for an object of a record that can be specific.That is we are filtered out of a record from a record set.
But .search() is used for the whole model records. That is searching a record from a database table.
In general, you usually use a .search for doing database queries and getting specific results from the database. You'll use filtered() mostly when you want to filter out a part of a record set in the Python code without doing database operations anymore.

Regards

1
Avatar
Abbandona
Hariom Pandya

I was also having same doubt but able to locate this question.
Awesome question and to-the-point answer by cybrosys.
Thank you Francesco Ballerini and Cybrosys.

Avatar
Indira
Risposta migliore

Muchas gracias a todos, tenía esta misma duda y he podido aclararla, 

Saludos desde Cuba

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
What is the role of Social User and Social Manager in Social Marketing Module. Risolto
performance
Avatar
Avatar
2
nov 25
711
I'm Looking for a real estate Web Design and Development Agency in Dubai
performance
Avatar
Avatar
Avatar
Avatar
Avatar
4
set 25
2067
work orders duration
performance
Avatar
0
lug 25
1756
Slow Download Speed with Custom Odoo Module
performance
Avatar
0
feb 25
2594
Odoo - Memcached - Postgresql
performance
Avatar
0
mag 21
10862
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now