File tree 3 files changed +26
-3
lines changed
source/content/pages/05-data
3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -4946,7 +4946,7 @@ <h3>PostgreSQL monitoring and performance</h3>
4946
4946
</li>
4947
4947
<li>
4948
4948
<p>This article on <a href="http://www.geekytidbits.com/performance-tuning-postgres/">performance tuning PostgreSQL</a>
4949
- covers how to find slow queries, tune indexes and modify your queries
4949
+ shows how to find slow queries, tune indexes and modify your queries
4950
4950
to run faster.</p>
4951
4951
</li>
4952
4952
<li>
@@ -4960,6 +4960,14 @@ <h3>PostgreSQL monitoring and performance</h3>
4960
4960
is a simple GitHub repository of SQL queries that can be run against
4961
4961
a PostgreSQL instance to determine usage, caching and bloat.</p>
4962
4962
</li>
4963
+ <li>
4964
+ <p><a href="http://blog.cleverelephant.ca/2016/08/pgsql-text-pattern-ops.html">PgSQL Indexes and "LIKE"</a>
4965
+ examines why LIKE queries do not take advantage of PostgreSQL indexes
4966
+ when the locale is set to something other than the default "C", which is
4967
+ for the North American UNIX default. The gist is that you need to
4968
+ build a special index to support LIKE whenever you use a locale other
4969
+ than "C".</p>
4970
+ </li>
4963
4971
</ul>
4964
4972
<h1>MySQL</h1>
4965
4973
<p>MySQL is an open source <a href="/databases.html">relational database</a>
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ <h3>PostgreSQL monitoring and performance</h3>
294
294
</ li >
295
295
< li >
296
296
< p > This article on < a href ="http://www.geekytidbits.com/performance-tuning-postgres/ "> performance tuning PostgreSQL</ a >
297
- covers how to find slow queries, tune indexes and modify your queries
297
+ shows how to find slow queries, tune indexes and modify your queries
298
298
to run faster.</ p >
299
299
</ li >
300
300
< li >
@@ -308,6 +308,14 @@ <h3>PostgreSQL monitoring and performance</h3>
308
308
is a simple GitHub repository of SQL queries that can be run against
309
309
a PostgreSQL instance to determine usage, caching and bloat.</ p >
310
310
</ li >
311
+ < li >
312
+ < p > < a href ="http://blog.cleverelephant.ca/2016/08/pgsql-text-pattern-ops.html "> PgSQL Indexes and "LIKE"</ a >
313
+ examines why LIKE queries do not take advantage of PostgreSQL indexes
314
+ when the locale is set to something other than the default "C", which is
315
+ for the North American UNIX default. The gist is that you need to
316
+ build a special index to support LIKE whenever you use a locale other
317
+ than "C".</ p >
318
+ </ li >
311
319
</ ul >
312
320
< h3 > Do you want to learn more about data or web apps?</ h3 >
313
321
< div class ="row ">
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ have to handle these issues in your applications.
249
249
to improve database performance.
250
250
251
251
* This article on [ performance tuning PostgreSQL] ( http://www.geekytidbits.com/performance-tuning-postgres/ )
252
- covers how to find slow queries, tune indexes and modify your queries
252
+ shows how to find slow queries, tune indexes and modify your queries
253
253
to run faster.
254
254
255
255
* [ What PostgreSQL tells you about its performance] ( http://okigiveup.net/what-postgresql-tells-you-about-its-performance/ )
@@ -261,3 +261,10 @@ have to handle these issues in your applications.
261
261
is a simple GitHub repository of SQL queries that can be run against
262
262
a PostgreSQL instance to determine usage, caching and bloat.
263
263
264
+ * [ PgSQL Indexes and "LIKE"] ( http://blog.cleverelephant.ca/2016/08/pgsql-text-pattern-ops.html )
265
+ examines why LIKE queries do not take advantage of PostgreSQL indexes
266
+ when the locale is set to something other than the default "C", which is
267
+ for the North American UNIX default. The gist is that you need to
268
+ build a special index to support LIKE whenever you use a locale other
269
+ than "C".
270
+
You can’t perform that action at this time.
0 commit comments