Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for datastores (0.06 sec)

  1. docs/nl/docs/features.md

        * Cookies, enz.
    
    Plus alle beveiligingsfuncties van Starlette (inclusief **sessiecookies**).
    
    Gebouwd als een herbruikbare tool met componenten die makkelijk te integreren zijn in en met je systemen, datastores, relationele en NoSQL databases, enz.
    
    ### Dependency Injection
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 03 13:50:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 16 08:43:49 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/DataStore.java

     */
    package org.codelibs.fess.ds;
    
    import org.codelibs.fess.ds.callback.IndexUpdateCallback;
    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.es.config.exentity.DataConfig;
    
    public interface DataStore {
    
        void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap);
    
        void stop();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 962 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

        protected Map<String, DataStore> dataStoreMap = new LinkedHashMap<>();
    
        protected String[] dataStoreNames = StringUtil.EMPTY_STRINGS;
    
        protected long lastLoadedTime = 0;
    
        public void add(final String name, final DataStore dataStore) {
            if (name == null || dataStore == null) {
                throw new IllegalArgumentException("name or dataStore is null.");
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 12:38:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public abstract class AbstractDataStore implements DataStore {
    
        private static final Logger logger = LogManager.getLogger(AbstractDataStore.class);
    
        protected static final String SCRIPT_TYPE = "script_type";
    
        public String mimeType = "application/datastore";
    
        protected boolean alive = true;
    
        public void register() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top