Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rltest(1) [debian man page]

RLTEST(1)						      Quick Database Manager							 RLTEST(1)

NAME
rltest - test cases for QDBM Relic SYNOPSIS
rltest write name rnum rltest read name rnum DESCRIPTION
The command `rltest' is a utility for facility test and performance test. Check a database generated by the command or measure the execu- tion time of the command. This command is used in the following format. `name' specifies a database name. `rnum' specifies the number of records. rltest write name rnum Store records with keys of 8 bytes. They change as `00000001', `00000002'... rltest read name rnum Retrieve records of the database above. This command returns 0 on success, another on failure. SEE ALSO
qdbm(3), relic(3) AUTHOR
QDBM was written by Mikio Hirabayashi <mikio@fallabs.com>. Man Page 2005-06-01 RLTEST(1)

Check Out this Related Man Page

VLTEST(1)						      Quick Database Manager							 VLTEST(1)

NAME
vltest - test cases for QDBM Villa SYNOPSIS
vltest write [-int] [-cz|-cy|-cx] [-tune lrecmax nidxmax lcnum ncnum] [-fbp num] name rnum vltest read [-int] name vltest rdup [-int] [-cz|-cy|-cx] [-cc] [-tune lrecmax nidxmax lcnum ncnum] [-fbp num] name rnum pnum vltest combo [-cz|-cy|-cx] name vltest wicked [-c] [-cz|-cy|-cx] name rnum DESCRIPTION
The command `vltest' is a utility for facility test and performance test. Check a database generated by the command or measure the execu- tion time of the command. This command is used in the following format. `name' specifies a database name. `rnum' specifies the number of the records. vltest write [-int] [-cz|-cy|-cx] [-tune lrecmax nidxmax lcnum ncnum] [-fbp num] name rnum Store records with keys of 8 bytes. They change as `00000001', `00000002'... vltest read [-int] [-vc] name Retrieve all records of the database above. vltest rdup [-int] [-cz|-cy|-cx] [-cc] [-tune lrecmax nidxmax lcnum ncnum] [-fbp num] name rnum pnum Store records with partway duplicated keys using duplicate mode. vltest combo [-cz|-cy|-cx] name Perform combination test of various operations. vltest wicked [-c] [-cz|-cy|-cx] name rnum Perform updating operations selected at random. Options feature the following. -int : treat keys and values as objects of `int', and use comparing function `VL_CMPINT'. -cz : compress leaves in the database with ZLIB. -cy : compress leaves in the database with LZO. -cx : compress leaves in the database with BZIP2. -vc : refer to volatile cache. -cc : select `VL_DCAT' or `VL_DDUP' at random. -tune lrecmax nidxmax lcnum ncnum : set tuning parameters. -fbp num : set the size of the free block pool. -c : perform comparison test with map of Cabin. This command returns 0 on success, another on failure. The environment variable `QDBMDBGFD' specifies the file descriptor to output the history of updating the variable `dpecode'. SEE ALSO
qdbm(3), villa(3) AUTHOR
QDBM was written by Mikio Hirabayashi <mikio@fallabs.com>. Man Page 2005-06-01 VLTEST(1)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Checking for invalid chars

Hi there! Can you please tell me how to check for ctrl chars or noprintable chars in a batch file ?? I suspect that some of my file is corrupted by those chars and i dont know how to chase them ... Thanks a lot! (2 Replies)
Discussion started by: andryk
2 Replies

2. Shell Programming and Scripting

Perl questions - more

More questions for Perl on Windows (again I apologize its on windows... ) 1. How can I check free disk space on a drive in windows using perl command in a script? 2. How can I check processes running using perl command (as I would normally be able to see in task manager for example) 3. I... (7 Replies)
Discussion started by: frustrated1
7 Replies

3. Shell Programming and Scripting

Perl error while using File::Tail

Hi, Can someone help with this PERL code; I am getting this error while running below code: And this is the code: use File::Tail; $file=File::Tail->new("/some/log/file"); while (defined($line=$file->read)) { print "$line"; } I don't usually use PERL therefore I am not... (1 Reply)
Discussion started by: INHF
1 Replies

4. Shell Programming and Scripting

FTP search ,grep using perl

Need assistance on a Perl script. I have a list of file names in a file and would like to search/grep the same names in the list of files on the ftp server and output to a file. Any help is appreciable Below is the script that can give me the list of files,size of file, Modified date on the... (56 Replies)
Discussion started by: ajayram_arya
56 Replies

5. Shell Programming and Scripting

Perl inside shell

I am trying to find out the difference between two dates, for which I am using perl inside SHELL. Below are my codes. perl -MDate -e 'Date::Calc qw(Delta_DHMS);' perl -e '($Dd,$Dh,$Dm,$Ds) = Delta_DHMS($year1,$month1,$day1, $hour1,$min1,$sec1, $year2,$month2,$day2, $hour2,$min2,$sec2)' But... (6 Replies)
Discussion started by: sauravrout
6 Replies

6. UNIX for Dummies Questions & Answers

UNIX Script - snipet meaning?

What would the below code snippet mean? my ($_configParam, $_paramValue) = split(/\s*=\s*/, $_, 2); $configParamHash{$_configParam} = $_paramValue; (2 Replies)
Discussion started by: MaKha
2 Replies

7. Shell Programming and Scripting

Building JSON command with bash script

Hello. I'm new to bash script and I'm learning the basics by writing some scripts. Recently a friend of mine asked me if I could try to write a script to him to automate a couple of processes that uses JSON RPCs. I'll try to explain in few words the workflow just to contextualize the problem.... (48 Replies)
Discussion started by: psysc0rpi0n
48 Replies