IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4879 for trunk/Nebulous-Server


Ignore:
Timestamp:
Aug 25, 2005, 1:42:34 PM (21 years ago)
Author:
jhoblitt
Message:

document object methods

Location:
trunk/Nebulous-Server
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/Build.PL

    r4629 r4879  
    9595        'Apache::DBI'           => '0.94',
    9696    },
     97    script_files        => 'bin/neb-initdb',
    9798)->create_build_script;
  • trunk/Nebulous-Server/scripts/bench_test.pl

    r4440 r4879  
    1414
    1515my $key = shift || 'foobar';
     16            my $fh = $neb->create( $key );
     17            close $fh;
    1618
    17 timethese( -10,
     19timethese( -3,
    1820    {
    1921        'create/delete' => sub {
    20             my $fh = $neb->create( $key );
    21             close $fh;
    22             $neb->delete( $key );
     22#            $neb->delete( $key );
     23            $neb->stat( $key );
    2324        },
    2425    }
  • trunk/Nebulous-Server/scripts/stest.pl

    r4440 r4879  
    1818
    1919$neb->create( $fname, 1 );
    20 $neb->unlock( $fname, 'write' );
     20#$neb->unlock( $fname, 'write' );
    2121$neb->delete( $fname );
    2222
Note: See TracChangeset for help on using the changeset viewer.