Tagged Questions
5
votes
1answer
540 views
Rails 3 Cli executes commands really slow?
somebody knows why my rails 3.0.7 cli is so slow? when i run rails s or rails g it takes like 5sec till he actually executes the command...
any advice? thanks
1
vote
2answers
2k views
Why is postgresql update query so slow sometimes, even with index
i have a simple update query (foo column type is BOOLEAN (default false)):
update tablename set foo = true where id = 234;
which "id" is set to (primary) key, and if i run "explain analyze" i got:
...