I tried to execute a ScanQuery against a thick client cache of <string, string>using CPP ignite. Size() functions returns 9. But I am getting only 3 results while looping over the cursor.
Code used was like this
auto cursor = t_Cache->Query(ScanQuery());
while (cursor.HasNext())
{
auto entry = cursor.GetNext();
std::cout << entry.GetKey() << "->" << entry.GetValue() <<
std::endl;
}
What am I doing wrong here??
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
