Difference between revisions of "Setting up automatic Smart Search indexing"

From Joomla! Documentation

(Update 3.0 to 3.1)
Line 1: Line 1:
{{version|2.5,3.0}}Although the Smart Search index is automatically kept up-to-date whenever content items are amended, there are some circumstances where you need to re-run the indexer.  You can do this manually using the Index toolbar button in the [[Help25:Components Finder Manage Indexed Content|Manage Indexed Content]] screen, however if you need to re-index content automatically then it is also possible to run the indexer as a command-line application.  This makes it particularly convenient to run the indexer from a cron job.
+
{{version|2.5,3.1}}Although the Smart Search index is automatically kept up-to-date whenever content items are amended, there are some circumstances where you need to re-run the indexer.  You can do this manually using the Index toolbar button in the [[Help25:Components Finder Manage Indexed Content|Manage Indexed Content]] screen, however if you need to re-index content automatically then it is also possible to run the indexer as a command-line application.  This makes it particularly convenient to run the indexer from a cron job.
  
 
The Smart Search CLI application is located in the <tt>cli</tt> directory in your site's root directory (that is, the same directory as your configuration.php file).  In this directory you will find a file called <tt>finder_indexer.php</tt>.  Simply enter this command to run the indexer:
 
The Smart Search CLI application is located in the <tt>cli</tt> directory in your site's root directory (that is, the same directory as your configuration.php file).  In this directory you will find a file called <tt>finder_indexer.php</tt>.  Simply enter this command to run the indexer:

Revision as of 04:57, 29 April 2013

Although the Smart Search index is automatically kept up-to-date whenever content items are amended, there are some circumstances where you need to re-run the indexer. You can do this manually using the Index toolbar button in the Manage Indexed Content screen, however if you need to re-index content automatically then it is also possible to run the indexer as a command-line application. This makes it particularly convenient to run the indexer from a cron job.

The Smart Search CLI application is located in the cli directory in your site's root directory (that is, the same directory as your configuration.php file). In this directory you will find a file called finder_indexer.php. Simply enter this command to run the indexer:

php finder_indexer.php

Typical output from the command-line indexer looks like this:

Smart Search INDEXER
============================

Starting Indexer
Setting up Finder plugins
Setup 154 items in 0.094 seconds.
 * Processed batch 1 in 0.213 seconds.
 * Processed batch 2 in 0.182 seconds.
 * Processed batch 3 in 0.177 seconds.
 * Processed batch 4 in 0.009 seconds.
Total Processing Time: 0.676 seconds.

Setting up a cron job[edit]

Whilst the specifics are beyond the scope of this article, in general you will merely have to enter the above command into the cron job manager and specify the time or times on which the job is to be run. You will probably need to include the full path to the indexer. For example, like this

php /var/www/myjoomla/cli/finder_indexer.php

Out of memory issues[edit]

If your site has particularly complex indexing requirements it is possible that the standard memory allocation will not be sufficient for the indexer to run to completion. You can increase the memory allocated to the command-line indexer using an extra parameter on the command-line, like this:

php -d memory_limit=256M finder_indexer.php

Replace the 256M with whatever is appropriate for your circumstances.

The command-line indexer uses the same parameters as the indexer on the Manage Indexed Content screen. You can change the parameters using the Options toolbar button on that screen. Note that both the Indexer Batch Size and Memory Table Limit fields affect the amount of memory used by the indexer.