SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-IPC-ShareLite rpm build for : OpenSuSE. For other distributions click perl-IPC-ShareLite.

Name : perl-IPC-ShareLite
Version : 0.17 Vendor : openSUSE
Release : bp154.1.24 Date : 2022-05-09 11:09:42
Group : Development/Libraries/Perl Source RPM : perl-IPC-ShareLite-0.17-bp154.1.24.src.rpm
Size : 0.05 MB
Packager : https://bugs_opensuse_org
Summary : Lightweight interface to shared memory
Description :
IPC::ShareLite provides a simple interface to shared memory, allowing data
to be efficiently communicated between processes. Your operating system
must support SysV IPC (shared memory and semaphores) in order to use this
module.

IPC::ShareLite provides an abstraction of the shared memory and semaphore
facilities of SysV IPC, allowing the storage of arbitrarily large data; the
module automatically acquires and removes shared memory segments as needed.
Storage and retrieval of data is atomic, and locking functions are provided
for higher-level synchronization.

In many respects, this module is similar to IPC::Shareable. However,
IPC::ShareLite does not provide a tied interface, does not (automatically)
allow the storage of variables, and is written in C for additional speed.

Construct an IPC::ShareLite object by calling its constructor:

my $share = IPC::ShareLite->new(
-key => 1971,
-create => \'yes\',
-destroy => \'no\'
) or die $!;

Once an instance has been created, data can be written to shared memory by
calling the store() method:

$share->store(\"This is going in shared memory\");

Retrieve the data by calling the fetch() method:

my $str = $share->fetch();

The store() and fetch() methods are atomic; any processes attempting to
read or write to the memory are blocked until these calls finish. However,
in certain situations, you\'ll want to perform multiple operations
atomically. Advisory locking methods are available for this purpose.

An exclusive lock is obtained by calling the lock() method:

$share->lock();

Happily, the lock() method also accepts all of the flags recognized by the
flock() system call. So, for example, you can obtain a shared lock like
this:

$share->lock( LOCK_SH );

Or, you can make either type of lock non-blocking:

$share->lock( LOCK_EX|LOCK_NB );

Release the lock by calling the unlock() method:

$share->unlock;

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/openSUSE:/Backports:/SLE-15-SP4/standard/x86_64

Content of RPM  Changelog  Provides Requires

Download
ftp.icm.edu.pl  perl-IPC-ShareLite-0.17-bp154.1.24.x86_64.rpm
ftp.icm.edu.pl  perl-IPC-ShareLite-0.17-bp154.1.24.x86_64.rpm
     

Provides :
perl(IPC::ShareLite)
perl-IPC-ShareLite
perl-IPC-ShareLite(x86-64)

Requires :
libc.so.6()(64bit)
libc.so.6(GLIBC_2.14)(64bit)
libc.so.6(GLIBC_2.2.5)(64bit)
libc.so.6(GLIBC_2.3.4)(64bit)
libc.so.6(GLIBC_2.4)(64bit)
perl(:MODULE_COMPAT_5.26.1)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsXz) <= 5.2-1


Content of RPM :
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/IPC
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/IPC/ShareLite.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/IPC
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/IPC/ShareLite
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/IPC/ShareLite/ShareLite.so
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/IPC/ShareLite/autosplit.ix
/usr/share/doc/packages/perl-IPC-ShareLite
/usr/share/doc/packages/perl-IPC-ShareLite/Changes
/usr/share/doc/packages/perl-IPC-ShareLite/README
/usr/share/man/man3/IPC::ShareLite.3pm.gz

 
ICM