The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "tie::file"

Tie::File - Access the lines of a disk file via a Perl array River stage three • 30 direct dependents • 100 total dependents

"Tie::File" represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file. The first line of the file is element 0 of the array; the second line is element 1, and so on. The file is *not* loaded into me...

TODDR/Tie-File-1.07 - 20 Feb 2023 17:05:34 UTC - Search in distribution

Tie::File::AsHash - access lines of a file as a hash splitting at separator River stage zero No dependents

"Tie::File::AsHash" uses "Tie::File" and perl code from "Tie::Array::AsHash" so files can be tied to hashes. "Tie::File" does all the hard work while "Tie::File::AsHash" works a little magic of its own. The module was initially written by Chris Angel...

REHSACK/Tie-File-AsHash-0.200 - 12 Nov 2013 16:08:34 UTC - Search in distribution

File::ExtAttr::Tie - Tie interface to extended attributes of files River stage one • 5 direct dependents • 5 total dependents

File::ExtAttr::Tie provides access to extended attributes of a file through a tied hash. Creating a new key creates a new extended attribute associated with the file. Modifying the value or removing a key likewise modifies/removes the extended attrib...

RICHDAWE/File-ExtAttr-1.09 - 07 Mar 2009 10:37:45 UTC - Search in distribution

Tie::File::AnyData - Access the data of a disk file via a Perl array River stage one • 2 direct dependents • 2 total dependents

This module hacks 'Tie::File' to allow it to manage any kind of data. See the documentation of 'Tie::File' for more details on the functionality of this module. To do so, you must provide a code reference (an anonymous subroutine) to the tie call. Th...

MOTIF/Tie-File-AnyData-0.03 - 24 Mar 2008 18:34:28 UTC - Search in distribution

Tie::File::Hashify - Parse a file and tie the result to a hash. River stage zero No dependents

This module helps parsing simple text files and mapping it's contents to a plain hash. It reads a file line by line and uses a callback or expression you provide to parse a key and a value from it. The key/value pairs are then available through the g...

JKRAMER/Tie-File-Hashify-0.03 - 27 Jun 2008 20:37:50 UTC - Search in distribution

Tie::File::Indexed - fast tied array access to indexed data files River stage one • 1 direct dependent • 2 total dependents

The Tie::File::Indexed class provides fast tied array access to raw data-files using an auxilliary packed index-file to store and retrieve the offsets and lengths of the corresponding raw data strings as well as an additional header-file to store adm...

MOOCOW/Tie-File-Indexed-0.09 - 21 Sep 2016 07:20:40 UTC - Search in distribution

Tie::File::FixedRecLen - Fixed Length Record support for Tie:File River stage zero No dependents

Use Tie::File::FixedRecLen as a drop-in replacement to Tie::File in order to add support for fixed length records within your tied files. When tieing to a file, you must specify the length of a record in the file. This length does not include the rec...

OLIVER/Tie-File-FixedRecLen-2.112531 - 10 Sep 2011 13:23:35 UTC - Search in distribution

Tie::MLDBM::Lock::File - Tie::MLDBM Locking Component Module River stage zero No dependents

This module forms a locking component of the Tie::MLDBM framework, employing synchronisation through use of the "flock" function. This use of "flock" is performed with a temporary lock file which is specified in the Tie::MLDBM framework constructor. ...

ROBAU/Tie-MLDBM-1.04 - 26 Oct 2002 10:40:15 UTC - Search in distribution

Tie::LogFile - Simple Log Autoformating River stage zero No dependents

This module provides a quick and simple way to print out a log file with a repetative format. In many of my projects I had something like this: sub logit { print $LOG scalar localtime, @_; } This is less than flexible, and still lends itself to logli...

CREIN/Tie-LogFile-0.1 - 16 Oct 2002 10:14:11 UTC - Search in distribution

Tie::CSV_File - ties a csv-file to an array of arrays River stage one • 1 direct dependent • 1 total dependent

"Tie::CSV_File" represents a regular csv file as a Perl array of arrays. The first dimension of the represents the line-nr in the original file, the second dimension represents the col-nr. Both indices are starting with 0. You can also access with th...

BIGJ/Tie-CSV_File-0.25 - 04 May 2020 05:40:28 UTC - Search in distribution

Tie::DictFile - tie a hash to local dictionary file River stage zero No dependents

Ties a hash to a local dictionary file (typically "/usr/dict/words" or "/usr/share/dict/words") to allow easy dictionary lookup, insertion and deletion. Lookup operations are cached for performance, and any insertions/deletions are only written to th...

ANUNES/Tie-DictFile-0.03 - 27 Jun 2003 17:40:04 UTC - Search in distribution

Tie::Array::File::LazyRead - Read a file record by record using tied array and for() River stage one • 1 direct dependent • 1 total dependent

EXPERIMENTAL, PROOF-OF-CONCEPT. When "for()" is given a tied array: for (@tied_array) { ... } it will invoke "FETCHSIZE" on the tied array to find out the size, then FETCH(0), *then FETCHSIZE() again, then FETCH(1), and so on.* In other words, "FETCH...

PERLANCAR/Tie-Array-File-LazyRead-0.001 - 16 Apr 2019 10:54:24 UTC - Search in distribution

Tie::ConfigFile - Tie configuration file to a hash River stage zero No dependents

This module allows you to tie configuration file to a hash. To understand what "tie" means in this context, read perltie. Comments, empty lines and order in configuration file are always preserved. Formatting of a line is preserved unless you modify ...

XENU/Tie-ConfigFile-1.3 - 19 Mar 2016 01:11:40 UTC - Search in distribution

Tie::FileSystem - Access file system via a Perl hash River stage zero No dependents

Tie::FileSystem represents file system as a Perl hash. Each hash key corresponds to name of a directory or a file. For example, for a file "/etc/passwd" it will be $data{'etc'}{'passwd'}. Contents of the file "/etc/passwd" becomes a value correspondi...

INITDOTD/Tie-FileSystem-2.15 - 21 Mar 2007 00:15:34 UTC - Search in distribution
  • Tie::FileSystem::System - Helper functions for reading in and processing of system files in the Tie::FileSystem framework.

Tie::ScalarFile River stage zero No dependents

Tie::ScalarFile is a perl module for associating scalars with files. You can then add to the scalar, and the file will be written to. You can read the value, and the file will be read from....

LINC/Tie-ScalarFile-1.12 - 15 Aug 2005 23:56:44 UTC - Search in distribution

Tie::DB_FileLock - Locking access to Berkeley DB 1.x River stage zero No dependents

Module DB_File allows perl to tie hashes to on-disk dbm files, but fails to provide any method by which the hashes might be locked, providing exclusive access or preventing page-level collisions. Tie::DB_FileLock extends DB_File, providing a locking ...

JMV/Tie-DB_FileLock-0.11 - 14 May 2010 22:12:17 UTC - Search in distribution

Tie::FileSection - restrict files sequential access using array like boundaries River stage zero No dependents

`Tie::FileSection` represent a regular text file specified by the file name, with boundaries to restrict to a specific section of the file. It is possible to use negative boundaries that will be relative to the end of the file. It is designed to work...

XLAT/Tie-FileSection-0.171950 - 14 Jul 2017 14:32:35 UTC - Search in distribution

Tie::FileLRUCache - A lightweight but robust filesystem based persistent LRU cache River stage one • 1 direct dependent • 2 total dependents

Provides a lightweight persistent filesystem based LRU cache. It uses the 'last accessed' timestamp generated by the file system to determine the 'oldest' cache entry and discards the oldest cache entries when needed to stay under the -keep_last limi...

SNOWHARE/Tie-FileLRUCache-1.06 - 08 Oct 2020 13:32:26 UTC - Search in distribution

Tie::File::AnyData::MultiRecord_CSV - Accessing groups of CSV records in a file via a Perl array. River stage zero No dependents

"Tie::File::AnyData::MultiRecord_CSV" allows the management of groups of CSV records in a file via a Perl array through "Tie::File::AnyData", so read the documentation of the latter module for further details on its internals. For the management of C...

MOTIF/Tie-File-AnyData-MultiRecord_CSV-0.01 - 23 Mar 2008 20:04:51 UTC - Search in distribution
696 results (0.124 seconds)