Tabnine Logo
IgniteInternalCache.setSkipStore
Code IndexAdd Tabnine to your IDE (free)

How to use
setSkipStore
method
in
org.apache.ignite.internal.processors.cache.IgniteInternalCache

Best Java code snippets using org.apache.ignite.internal.processors.cache.IgniteInternalCache.setSkipStore (Showing top 5 results out of 315)

origin: apache/ignite

/** {@inheritDoc} */
@Override public IgniteInternalCache setSkipStore(boolean skipStore) {
  return delegate.get().setSkipStore(skipStore);
}
origin: apache/ignite

  /** {@inheritDoc} */
  @Override public GridRestResponse call() throws Exception {
    IgniteInternalCache<?, ?> prj = cache(g, cacheName)
      .forSubjectId(clientId)
      .setSkipStore(cacheFlags.contains(SKIP_STORE));
    if (cacheFlags.contains(KEEP_BINARIES))
      prj = prj.keepBinary();
    // Need to apply both operation and response transformation remotely
    // as cache could be inaccessible on local node and
    // exception processing should be consistent with local execution.
    return op.apply((IgniteInternalCache<Object, Object>)prj, ((IgniteKernal)g).context()).
      chain(resultWrapper((IgniteInternalCache<Object, Object>)prj, key)).get();
  }
}
origin: apache/ignite

IgniteInternalCache<?, ?> prj = localCache(cacheName)
  .forSubjectId(clientId)
  .setSkipStore(cacheFlags.contains(SKIP_STORE));
origin: org.apache.ignite/ignite-core

  /** {@inheritDoc} */
  @Override public GridRestResponse call() throws Exception {
    IgniteInternalCache<?, ?> prj = cache(g, cacheName)
      .forSubjectId(clientId)
      .setSkipStore(cacheFlags.contains(SKIP_STORE));
    if (cacheFlags.contains(KEEP_BINARIES))
      prj = prj.keepBinary();
    // Need to apply both operation and response transformation remotely
    // as cache could be inaccessible on local node and
    // exception processing should be consistent with local execution.
    return op.apply((IgniteInternalCache<Object, Object>)prj, ((IgniteKernal)g).context()).
      chain(resultWrapper((IgniteInternalCache<Object, Object>)prj, key)).get();
  }
}
origin: org.apache.ignite/ignite-core

IgniteInternalCache<?, ?> prj = localCache(cacheName)
  .forSubjectId(clientId)
  .setSkipStore(cacheFlags.contains(SKIP_STORE));
org.apache.ignite.internal.processors.cacheIgniteInternalCachesetSkipStore

Popular methods of IgniteInternalCache

  • context
  • get
    Retrieves value mapped to the specified key from cache. Value will only be returned if its entry pas
  • affinity
    Gets affinity service to provide information about data partitioning and distribution.
  • configuration
    Gets configuration bean for this cache.
  • containsKey
  • getAndPut
    Stores given key-value pair in cache. If filters are provided, then entries will be stored in cache
  • getAndPutIfAbsent
    Stores given key-value pair in cache only if cache had no previous mapping for it. If cache previous
  • invoke
  • invokeAsync
  • put
    Stores given key-value pair in cache. If filters are provided, then entries will be stored in cache
  • size
  • cache
    Gets base cache for this projection.
  • size,
  • cache,
  • clear,
  • clearLocallyAll,
  • isEmpty,
  • isIgfsDataCache,
  • keySet,
  • localEntries,
  • localPeek,
  • lock

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now