.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" 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 .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . 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 "Mail::SpamAssassin::BayesStore::PgSQL 3pm" .TH Mail::SpamAssassin::BayesStore::PgSQL 3pm "2020-01-31" "perl v5.28.1" "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" Mail::SpamAssassin::BayesStore::PgSQL \- PostgreSQL Specific Bayesian Storage Module Implementation .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module implements a PostgreSQL specific bayesian storage module. .PP It subclasses Mail::SpamAssassin::BayesStore::SQL and overrides any methods which makes \s-1SQL\s0 calls involving the token column. Since PostgreSQL uses \s-1BYTEA\s0 for the token column type you must make sure that the \s-1DBD\s0 driver does the proper quoting. You can accomplish this by binding the token column to a specific type. .PP In versions 8.3 and up, synchronous_commit is disabled for faster performance. Data is not guaranteed to be stored until (3 * wal_writer_delay) (default: 0.6s) after it is written. This tradeoff works for Bayes because we care about aggregate data and a small period of time can be lost without sacrificing accuracy. .SH "METHODS" .IX Header "METHODS" .SS "token_expiration" .IX Subsection "token_expiration" public instance (Integer, Integer, Integer, Integer) token_expiration(\e% \f(CW$opts\fR, Integer \f(CW$newdelta\fR, @ \f(CW@vars\fR) .PP Description: This method performs the database specific expiration of tokens based on the passed in \f(CW$newdelta\fR and \f(CW@vars\fR. .SS "seen_put" .IX Subsection "seen_put" public (Boolean) seen_put (string \f(CW$msgid\fR, char \f(CW$flag\fR) .PP Description: This method records \f(CW$msgid\fR as the type given by \f(CW$flag\fR. \f(CW$flag\fR is one of two values 's' for spam and 'h' for ham. .SS "seen_delete" .IX Subsection "seen_delete" public instance (Boolean) seen_delete (string \f(CW$msgid\fR) .PP Description: This method removes \f(CW$msgid\fR from the database. .SS "set_last_expire" .IX Subsection "set_last_expire" public instance (Boolean) set_last_expire (Integer \f(CW$time\fR) .PP Description: This method sets the last expire time. .SS "set_running_expire_tok" .IX Subsection "set_running_expire_tok" public instance (String \f(CW$time\fR) set_running_expire_tok () .PP Description: This method sets the time that an expire starts running. .SS "remove_running_expire_tok" .IX Subsection "remove_running_expire_tok" public instance (Boolean) remove_running_expire_tok () .PP Description: This method removes the row in the database that indicates that and expire is currently running. .SS "tok_get" .IX Subsection "tok_get" public instance (Integer, Integer, Integer) tok_get (String \f(CW$token\fR) .PP Description: This method retrieves a specified token (\f(CW$token\fR) from the database and returns it's spam_count, ham_count and last access time. .SS "tok_get_all" .IX Subsection "tok_get_all" public instance (\e@) tok_get (@ \f(CW$tokens\fR) .PP Description: This method retrieves the specified tokens (\f(CW$tokens\fR) from storage and returns an array ref of arrays spam count, ham count and last access time. .SS "nspam_nham_change" .IX Subsection "nspam_nham_change" public instance (Boolean) nspam_nham_change (Integer \f(CW$num_spam\fR, Integer \f(CW$num_ham\fR) .PP Description: This method updates the number of spam and the number of ham in the database. .SS "tok_touch" .IX Subsection "tok_touch" public instance (Boolean) tok_touch (String \f(CW$token\fR, String \f(CW$atime\fR) .PP Description: This method updates the given tokens (\f(CW$token\fR) atime. .PP The assumption is that the token already exists in the database. .SS "tok_touch_all" .IX Subsection "tok_touch_all" public instance (Boolean) tok_touch (\e@ \f(CW$tokens\fR String \f(CW$atime\fR) .PP Description: This method does a mass update of the given list of tokens \f(CW$tokens\fR, if the existing token atime is < \f(CW$atime\fR. .PP The assumption is that the tokens already exist in the database. .PP We should never be touching more than N_SIGNIFICANT_TOKENS, so we can make some assumptions about how to handle the data (ie no need to batch like we do in tok_get_all) .SS "cleanup" .IX Subsection "cleanup" public instance (Boolean) cleanup () .PP Description: This method performs any cleanup necessary before moving onto the next operation. .SS "clear_database" .IX Subsection "clear_database" public instance (Boolean) clear_database () .PP Description: This method deletes all records for a particular user. .PP Callers should be aware that any errors returned by this method could causes the database to be inconsistent for the given user. .SH "Private Methods" .IX Header "Private Methods" .SS "_connect_db" .IX Subsection "_connect_db" private instance (Boolean) _connect_db () .PP Description: This method connects to the \s-1SQL\s0 database. .SS "_put_token" .IX Subsection "_put_token" private instance (Boolean) _put_token (string \f(CW$token\fR, integer \f(CW$spam_count\fR, integer \f(CW$ham_count\fR, string \f(CW$atime\fR) .PP Description: This method performs the work of either inserting or updating a token in the database. .SS "_put_tokens" .IX Subsection "_put_tokens" private instance (Boolean) _put_tokens (\e% \f(CW$token\fR, integer \f(CW$spam_count\fR, integer \f(CW$ham_count\fR, string \f(CW$atime\fR) .PP Description: This method performs the work of either inserting or updating tokens in the database. .SS "_token_select_string" .IX Subsection "_token_select_string" private instance (String) _token_select_string .PP Description: This method returns the string to be used in \s-1SELECT\s0 statements to represent the token column.