Marvin Humphrey > KinoSearch-0.30_04 > KinoSearch::FieldType::BlobType

Download:
KinoSearch-0.30_04.tar.gz

Annotate this POD

CPAN RT

Open  7
View Bugs
Report a bug
Source   Latest Release: KinoSearch-0.30_07

NAME ^

KinoSearch::FieldType::BlobType - Default behaviors for binary fields.

SYNOPSIS ^

    my $string_type = KinoSearch::FieldType::StringType->new;
    my $blob_type   = KinoSearch::FieldType::BlobType->new;
    my $schema      = KinoSearch::Schema->new;
    $schema->spec_field( name => 'id',   type => $string_type );
    $schema->spec_field( name => 'jpeg', type => $blob_type );

DESCRIPTION ^

BlobType is an implementation of FieldType tuned for use with fields containing binary data, which cannot be indexed or searched -- only stored.

CONSTRUCTORS ^

new()

    my $blob_type = KinoSearch::FieldType::BlobType->new;

Constructor. Takes no arguments.

INHERITANCE ^

KinoSearch::FieldType::BlobType isa KinoSearch::FieldType isa KinoSearch::Obj.

COPYRIGHT ^

Copyright 2005-2009 Marvin Humphrey

LICENSE, DISCLAIMER, BUGS, etc. ^

See KinoSearch version 0.30.