Comment trouver quel utilisateur a recherché un mot-clé spécifique ?

You could check the search_logs table. You could use this query in the Data explorer plugin:

-- [params]
-- string :word = my_word
SELECT * from search_logs where term = :word

For example, in my site I wanted to know who searched for the word rainbow:

1 « J'aime »