We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b79b6e commit 04693e3Copy full SHA for 04693e3
README.md
@@ -36,6 +36,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
36
### postgres
37
38
- [Timestamp Functions](postgres/timestamp-functions.md)
39
+- [Turning Timing On](postgres/turning-timing-on.md)
40
41
### rails
42
postgres/turn-timing-on.md
@@ -0,0 +1,9 @@
1
+# Turn Timing On
2
+
3
+When digging around your database and running queries, it is helpful to
4
+have an eye on the speed of those queries. This can give insight into
5
+where there are needs for optimizations.
6
7
+Turn timing on (and off) within `psql` by running `\timing`. With timing
8
+on, the duration of each query will be displayed in milliseconds after the
9
+output of the query.
0 commit comments