Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3421017
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3421017
Commits
f7bcc0fb
Commit
f7bcc0fb
authored
14 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#827554
by Josh Waihi: PostgreSQL performance optimization: PDO::ATTR_EMULATE_PREPARES.
parent
a3b28597
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
includes/database/pgsql/database.inc
+7
-0
7 additions, 0 deletions
includes/database/pgsql/database.inc
with
7 additions
and
0 deletions
includes/database/pgsql/database.inc
+
7
−
0
View file @
f7bcc0fb
...
@@ -40,6 +40,13 @@ public function __construct(array $connection_options = array()) {
...
@@ -40,6 +40,13 @@ public function __construct(array $connection_options = array()) {
$dsn
=
'pgsql:host='
.
$connection_options
[
'host'
]
.
' dbname='
.
$connection_options
[
'database'
]
.
' port='
.
$connection_options
[
'port'
];
$dsn
=
'pgsql:host='
.
$connection_options
[
'host'
]
.
' dbname='
.
$connection_options
[
'database'
]
.
' port='
.
$connection_options
[
'port'
];
parent
::
__construct
(
$dsn
,
$connection_options
[
'username'
],
$connection_options
[
'password'
],
array
(
parent
::
__construct
(
$dsn
,
$connection_options
[
'username'
],
$connection_options
[
'password'
],
array
(
// Prepared statements are most effective for performance when queries
// are recycled (used several times). However, if they are not re-used,
// prepared statements become ineffecient. Since most of Drupal's
// prepared queries are not re-used, it should be faster to emulate
// the preparation than to actually ready statements for re-use. If in
// doubt, reset to FALSE and measure performance.
PDO
::
ATTR_EMULATE_PREPARES
=>
TRUE
,
// Convert numeric values to strings when fetching.
// Convert numeric values to strings when fetching.
PDO
::
ATTR_STRINGIFY_FETCHES
=>
TRUE
,
PDO
::
ATTR_STRINGIFY_FETCHES
=>
TRUE
,
// Force column names to lower case.
// Force column names to lower case.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment