- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for datastores (0.06 sec)
-
docs/config/README.md
notify_postgres publish bucket notifications to Postgres databases notify_elasticsearch publish bucket notifications to Elasticsearch endpoints notify_redis publish bucket notifications to Redis datastores ``` ### Accessing configuration All configuration changes can be made using [`mc admin config` get/set/reset/export/import commands](https://github.com/minio/mc/blob/master/docs/minio-admin-complete-guide.md).
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
cmd/config-current.go
MultipleTargets: true, }, config.HelpKV{ Key: config.NotifyRedisSubSys, Description: "publish bucket notifications to Redis datastores", MultipleTargets: true, }, config.HelpKV{ Key: config.LambdaWebhookSubSys, Description: "manage remote lambda functions", MultipleTargets: true, }, config.HelpKV{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 28.5K bytes - Viewed (0) -
docs/bucket/notifications/README.md
notify_postgres publish bucket notifications to Postgres databases notify_elasticsearch publish bucket notifications to Elasticsearch endpoints notify_redis publish bucket notifications to Redis datastores ``` > NOTE: > > - '\*' at the end of arg means its mandatory. > - '\*' at the end of the values, means its the default value for the arg.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 84.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
public void test_multipleDataStores() { TestDataStore dataStore1 = new TestDataStore("Store1"); TestDataStore2 dataStore2 = new TestDataStore2("Store2"); dataStoreFactory.add("store1", dataStore1); dataStoreFactory.add("store2", dataStore2); assertSame(dataStore1, dataStoreFactory.getDataStore("store1")); assertSame(dataStore2, dataStoreFactory.getDataStore("store2"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
IndexUpdateCallback callback = new TestIndexUpdateCallback(); // Execute on both instances dataStore1.store(config, callback, params); dataStore2.store(config, callback, params); dataStore2.store(config, callback, params); // Verify independent operation assertEquals(1, store1CallCount.get()); assertEquals(2, store2CallCount.get());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStore.java
import org.codelibs.fess.ds.callback.IndexUpdateCallback; import org.codelibs.fess.entity.DataStoreParams; import org.codelibs.fess.opensearch.config.exentity.DataConfig; /** * The interface for DataStore. */ public interface DataStore { /** * Store the data. * @param config The data configuration. * @param callback The callback. * @param initParamMap The initial parameters. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* @param dataStore the data store instance to register, must not be null * @throws IllegalArgumentException if either name or dataStore is null */ public void add(final String name, final DataStore dataStore) { if (name == null || dataStore == null) { throw new IllegalArgumentException("name or dataStore is null."); } if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
assertEquals("123PARAM2+,PARAM3*abc", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap)); value = null; assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap)); value = ""; assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap)); value = " ";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
dataStore = dataStoreFactory.getDataStore(dataConfig.getHandlerName()); if (dataStore == null) { logger.error("DataStore({}) is not found.", dataConfig.getHandlerName()); } else { try { dataStore.store(dataConfig, indexUpdateCallback, initParamMap);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.0.jar"); assertEquals("fess-ds-atlassian", artifact.getName()); assertEquals("13.2.0", artifact.getVersion()); } public void test_getArtifactFromFileName2() { Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.1-20190708.212247-1.jar");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0)