.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "DBD::Gofer::Transport::Base 3pm" .TH DBD::Gofer::Transport::Base 3pm 2024-03-07 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME DBD::Gofer::Transport::Base \- base class for DBD::Gofer client transports .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& my $remote_dsn = "..." \& DBI\->connect("dbi:Gofer:transport=...;url=...;timeout=...;retry_limit=...;dsn=$remote_dsn",...) .Ve .PP or, enable by setting the DBI_AUTOPROXY environment variable: .PP .Vb 1 \& export DBI_AUTOPROXY=\*(Aqdbi:Gofer:transport=...;url=...\*(Aq .Ve .PP which will force \fIall\fR DBI connections to be made via that Gofer server. .SH DESCRIPTION .IX Header "DESCRIPTION" This is the base class for all DBD::Gofer client transports. .SH ATTRIBUTES .IX Header "ATTRIBUTES" Gofer transport attributes can be specified either in the attributes parameter of the \fBconnect()\fR method call, or in the DSN string. When used in the DSN string, attribute names don't have the \f(CW\*(C`go_\*(C'\fR prefix. .SS go_dsn .IX Subsection "go_dsn" The full DBI DSN that the Gofer server should connect to on your behalf. .PP When used in the DSN it must be the last element in the DSN string. .SS go_timeout .IX Subsection "go_timeout" A time limit for sending a request and receiving a response. Some drivers may implement sending and receiving as separate steps, in which case (currently) the timeout applies to each separately. .PP If a request needs to be resent then the timeout is restarted for each sending of a request and receiving of a response. .SS go_retry_limit .IX Subsection "go_retry_limit" The maximum number of times an request may be retried. The default is 2. .SS go_retry_hook .IX Subsection "go_retry_hook" This subroutine reference is called, if defined, for each response received where \f(CW$response\fR\->err is true. .PP The subroutine is pass three parameters: the request object, the response object, and the transport object. .PP If it returns an undefined value then the default retry behaviour is used. See "RETRY ON ERROR" below. .PP If it returns a defined but false value then the request is not resent. .PP If it returns true value then the request is resent, so long as the number of retries does not exceed \f(CW\*(C`go_retry_limit\*(C'\fR. .SH "RETRY ON ERROR" .IX Header "RETRY ON ERROR" The default retry on error behaviour is: .PP .Vb 1 \& \- Retry if the error was due to DBI_GOFER_RANDOM. See L. \& \& \- Retry if $request\->is_idempotent returns true. See L. .Ve .PP A retry won't be allowed if the number of previous retries has reached \f(CW\*(C`go_retry_limit\*(C'\fR. .SH TRACING .IX Header "TRACING" Tracing of gofer requests and responses can be enabled by setting the \&\f(CW\*(C`DBD_GOFER_TRACE\*(C'\fR environment variable. A value of 1 gives a reasonably compact summary of each request and response. A value of 2 or more gives a detailed, and voluminous, dump. .PP The trace is written using DBI\->\fBtrace_msg()\fR and so is written to the default DBI trace output, which is usually STDERR. .SH METHODS .IX Header "METHODS" \&\fIThis section is currently far from complete.\fR .SS response_retry_preference .IX Subsection "response_retry_preference" .Vb 1 \& $retry = $transport\->response_retry_preference($request, $response); .Ve .PP The response_retry_preference is called by DBD::Gofer when considering if a request should be retried after an error. .PP Returns true (would like to retry), false (must not retry), undef (no preference). .PP If a true value is returned in the form of a CODE ref then, if DBD::Gofer does decide to retry the request, it calls the code ref passing \f(CW$retry_count\fR, \f(CW$retry_limit\fR. Can be used for logging and/or to implement exponential backoff behaviour. Currently the called code must return using \f(CW\*(C`return;\*(C'\fR to allow for future extensions. .SH AUTHOR .IX Header "AUTHOR" Tim Bunce, .SH "LICENCE AND COPYRIGHT" .IX Header "LICENCE AND COPYRIGHT" Copyright (c) 2007\-2008, Tim Bunce, Ireland. All rights reserved. .PP This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. .SH "SEE ALSO" .IX Header "SEE ALSO" DBD::Gofer, DBI::Gofer::Request, DBI::Gofer::Response, DBI::Gofer::Execute. .PP and some example transports: .PP DBD::Gofer::Transport::stream .PP DBD::Gofer::Transport::http .PP DBI::Gofer::Transport::mod_perl