Disclaimer: this is not for optimization, just out of curiosity.
I'm wondering if this:
SET search_path TO myscheme; -- obviously this is done once per connection
SELECT foo, bar FROM table1 WHERE [..clauses..]
is somehow faster / slower than
SELECT foo, bar FROM myscheme.table1 WHERE [..clauses..]
or if there are some other implications that could suggest specifying the schema (or not) in every query.
I've done some (really few) tests and I can't see any difference in terms of speed.