-
-
16 Apr 2012 21:20:13 UTC
- Distribution: KinoSearch
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (535 / 132 / 8)
- Kwalitee
Bus factor: 0- 85.27% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (852.87KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Marvin Humphrey <marvin at rectangular dot com>
- Dependencies
- JSON::XS
- Lingua::Stem::Snowball
- Lingua::StopWords
- Parse::RecDescent
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
KinoSearch::Store::LockFactory - Create Locks.
DEPRECATED
The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/
SYNOPSIS
use Sys::Hostname qw( hostname ); my $hostname = hostname() or die "Can't get unique hostname"; my $folder = KinoSearch::Store::FSFolder->new( path => '/path/to/index', ); my $lock_factory = KinoSearch::Store::LockFactory->new( folder => $folder, host => $hostname, ); my $write_lock = $lock_factory->make_lock( name => 'write', timeout => 5000, interval => 100, );
DESCRIPTION
LockFactory is used to spin off interprocess mutex locks used by various index reading and writing components. The default implementation uses lockfiles, but LockFactory subclasses which are implemented using alternatives such as flock() are possible.
CONSTRUCTORS
new( [labeled params] )
my $lock_factory = KinoSearch::Store::LockFactory->new( folder => $folder, # required host => $hostname, # required );
folder - A KinoSearch::Store::Folder.
host - An identifier which should be unique per-machine.
METHODS
make_lock( [labeled params] )
Return a Lock object, which, once obtain() returns successfully, maintains an exclusive lock on a resource.
name - A file-system-friendly id which identifies the resource to be locked.
timeout - Time in milliseconds to keep retrying before abandoning the attempt to obtain() a lock.
interval - Time in milliseconds between retries.
make_shared_lock( [labeled params] )
Return a Lock object for which shared() returns true, and which maintains a non-exclusive lock on a resource once obtain() returns success.
name - A file-system-friendly id which identifies the resource to be locked.
timeout - Time in milliseconds to keep retrying before abandoning the attempt to obtain() a lock.
interval - Time in milliseconds between retries.
INHERITANCE
KinoSearch::Store::LockFactory isa KinoSearch::Object::Obj.
COPYRIGHT AND LICENSE
Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install KSx::Simple, copy and paste the appropriate command in to your terminal.
cpanm KSx::Simple
perl -MCPAN -e shell install KSx::Simple
For more information on module installation, please visit the detailed CPAN module installation guide.