com.autonomy.nonaci.indexing.impl.DreSyncCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of indexing-api Show documentation
Show all versions of indexing-api Show documentation
API for indexing into IDOL using Java
/*
* (c) Copyright 2008-2015 Micro Focus or one of its affiliates.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Micro Focus and its affiliates
* and licensors ("Micro Focus") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Micro Focus shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.autonomy.nonaci.indexing.impl;
/**
* Allows you to force an immediate flush to disk from the index cache. Sending this command to the index port instructs
* the engine to flush to disk and any documents currently held in the index cache are committed to disk.
*
* This is only required when DelayedSync is set to TRUE in your configuration file,
* and you believe documents have been processed but are not yet available for search. That documents remain in the
* index cache is evident when the number of document sections is higher than the number of committed slots in the
* action=getstatus output.
*
* Note these documents are flushed anyway when the MaxSyncDelay period you have configured expires.
*
* @author boba
*/
public class DreSyncCommand extends IndexCommandImpl {
/** Creates a new instance of DreSyncCommand. */
public DreSyncCommand() {
super(CMD_DRESYNC);
}
} // End of class DreSyncCommand...