logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Google::SafeBrowsing2::Postgres - Postgres as back-end storage for the Google Safe Browsing v2

Constructor

new()
       Create a Net::Google::SafeBrowsing2::Postgres object

         my $storage = Net::Google::SafeBrowsing2::Postgres->new(
             host     => '127.0.0.1',
             database => 'google_safe_browsing',
             username => $username,
             password => $password,
         );

       Arguments

       host
           Specifies Postgres host name. Defaults to 127.0.0.1.

       database
           Specifies Postgres database name. Defaults to "google_safe_browsing".

       username
           Specifies the username for the Postgres connection. Required.

       password
           Specifies the password for the Postgres connection. Required.

       keep_all
           Optional. Set to 1 to keep old information (such as expiring full hashes) in the database. 0 (delete)
           by default.

Description

       This is an implementation of Net::Google::SafeBrowsing2::Storage using Postgres.

Name

       Net::Google::SafeBrowsing2::Postgres - Postgres as back-end storage for the Google Safe Browsing v2
       database

Public Functions

           See Net::Google::SafeBrowsing2::Storage for a complete list of public functions.

   close()
       Cleanup old full hashes, and close the connection to the database.

         $storage->close();

See Also

       See Net::Google::SafeBrowsing2 for handling Google Safe Browsing v2.

Synopsis

         use Net::Google::SafeBrowsing2::Postgres;

         my $storage = Net::Google::SafeBrowsing2::Postgres->new(
           host     => '127.0.0.1',
           database => 'google_safe_browsing',
           username => $username,
           password => $password,
         );

         # ...

         $storage->close();

See Also