NAME
OpenInteract2::Manage::Website::ReindexObjects - Index objects for a particular class
SYNOPSIS
#!/usr/bin/perl
use strict;
use OpenInteract2::Manage;
my %PARAMS = ( spops => 'news' );
my $website_dir = '/home/httpd/mysite';
my $task = OpenInteract2::Manage->new(
'reindex_objects', \%PARAMS );
my @status = $task->execute;
foreach my $s ( @status ) {
my $ok_label = ( $s->{is_ok} eq 'yes' )
? 'OK' : 'NOT OK';
print "Status OK? $s->{is_ok}\n",
"$s->{message}\n";
}
REQUIRED OPTIONS
- spops=object-key
-
The key used for the SPOPS object you're trying to reindex. For instance, 'news' if you're trying to reindex the objects from the 'OpenInteract2::News' class.
OPTIONAL OPTIONS
- query=where-clause
-
A WHERE clause that will be sent directly to the database. This will limit the object's you're trying to reindex.
STATUS INFORMATION
Each status hashref includes:
- is_ok
-
Set to 'yes' if the task succeeded, 'no' if not.
- message
-
Success/failure message.
COPYRIGHT
Copyright (C) 2003-2004 Chris Winters. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHORS
Chris Winters <chris@cwinters.com>