GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Google::SafeBrowsing2::Postgres(3) User Contributed Perl Documentation Net::Google::SafeBrowsing2::Postgres(3)

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

  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();

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

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.

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

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

  $storage->close();

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

Copyright 2012 Nick Johnston, nickjohnstonsky@gmail.com. Based on "Net::Google::SafeBrowsing2" by Julien Sobrier.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.

2013-06-06 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.