Hi Chris, 1. Indexing may slowdown insertions, but in will not be used if no CacheConfiguration.setIndexedTypes() or CacheConfiguration.setQueryEntities() set.
2. It depends on conditions. If you have a lot of data, but you need to filter out a small set of them, then indexing may greatly help you, because it will use index but full scan. In other hand, scan query may be greatly optimized if it's used locally and per partition, but again, it will check all entries. 3. If you set withKeepBinary(), then you'll be working with BinaryObject and it's not require any specific config. Thanks! -Dmitry. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/getAsMap-tp16242p16347.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
