NAME
Archive::Har::Entry::Cache::Request - Represents a cache request for a cache inside the HTTP Archive
VERSION
Version '0.21'
SYNOPSIS
use Archive::Har();
my $http_archive_string = '"log": { "version": "1.1", .... ';
my $har = Archive::Har->new();
$har->string($http_archive_string);
foreach my $entry ($har->entries()) {
my $cache = $entry->cache();
my $before_request = $cache->before_request();
$before_request->comment("Something interesting here");
print "Expires: " . $before_request->expires() . "\n";
print "Last Access: " . $before_request->last_access() . "\n";
print "eTag: " . $before_request->etag() . "\n";
print "hitCount: " . $before_request->hit_count() . "\n";
print "Comment: " . $before_request->comment() . "\n";
my $after_request = $cache->after_request();
print "Expires: " . $after_request->expires() . "\n";
print "Last Access: " . $after_request->last_access() . "\n";
print "eTag: " . $after_request->etag() . "\n";
print "hitCount: " . $after_request->hit_count() . "\n";
print "Comment: " . $after_request->comment() . "\n";
}
DESCRIPTION
This Module is intended to provide an interface to create/read/update Cache Request objects in HTTP Archive (HAR) files.
SUBROUTINES/METHODS
new
returns a new Cache Request object
expires
returns the expiration time of the cache entry
last_access
returns the last time the cache was accessed
etag
returns the etag of the cache
comment
returns the comment about the Cache Request
DIAGNOSTICS
last_access is not formatted correctly
-
The last_access field must be formatted like so
0000-00-00T00:00:00.0+00:00
%s is not specified in the HAR 1.2 spec and does not start with an underscore
-
The HAR 1.2 specification allows undocumented fields, but they must start with an underscore
CONFIGURATION AND ENVIRONMENT
Archive::Har::Cache::Request requires no configuration files or environment variables.
DEPENDENCIES
Archive::Har::Cache::Request requires no additional non-core Perl modules
INCOMPATIBILITIES
None reported
AUTHOR
David Dick, <ddick at cpan.org>
BUGS AND LIMITATIONS
Please report any bugs or feature requests to bug-archive-har at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Archive-Har. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
LICENSE AND COPYRIGHT
Copyright 2015 David Dick.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.