pub enum RecyclingMethod {
    Fast,
    Verified,
    Clean,
    Custom(String),
}
Expand description

Possible methods of how a connection is recycled.

Attention: The current default is Verified but will be changed to Fast in the next minor release of [deadpool-postgres]. Please, make sure to explicitly state this if you want to keep using the Verified recycling method.

Variants

Fast

Only run Client::is_closed() when recycling existing connections.

Unless you have special needs this is a safe choice.

Verified

Run Client::is_closed() and execute a test query.

This is slower, but guarantees that the database connection is ready to be used. Normally, Client::is_closed() should be enough to filter out bad connections, but under some circumstances (i.e. hard-closed network connections) it’s possible that Client::is_closed() returns false while the connection is dead. You will receive an error on your first query then.

Clean

Like Verified query method, but instead use the following sequence of statements which guarantees a pristine connection:

CLOSE ALL;
SET SESSION AUTHORIZATION DEFAULT;
RESET ALL;
UNLISTEN *;
SELECT pg_advisory_unlock_all();
DISCARD TEMP;
DISCARD SEQUENCES;

This is similar to calling DISCARD ALL. but doesn’t call DEALLOCATE ALL and DISCARD PLAN, so that the statement cache is not rendered ineffective.

Custom(String)

Like Verified but allows to specify a custom SQL to be executed.

Implementations

Returns SQL query to be executed when recycling a connection.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.