Hi Pavel, Scenario is - i am caching list of let's say 10000 employee poco class objects with name 'employeeCache'. Now, from this cache, I want to get employee object with id 1500. 1) For this what is fastest & efficient way ? Simple one is get full cache data i.e. 'employeeCache' object and then find employee with id 1500 using link etc. Or there is another efficient way ?
2) for 1st request / any subsequent Get request of this cache, does it connect with server node? Regards, Sudhir On Friday, November 8, 2019, Pavel Tupitsyn <[email protected]> wrote: > Hi, > > Every request is communicated to the server, there is no "local cache" or > anything like that. > > On Fri, Nov 8, 2019 at 8:37 PM Sudhir Patil <[email protected]> > wrote: > >> Hi All, >> >> In ignite.net server node stores cache data and a thin client >> communicates with server to get cache data. >> >> In such situations, post 1 request of cache data by thin client, does all >> further requests still communicate with server or it stores that cache data >> on thin client and server from there and do not communicate with server ?? >> >> Regards, >> Sudhir >> >> >> -- >> Thanks & Regards, >> Sudhir Patil, >> +91 9881095647. >> > -- Thanks & Regards, Sudhir Patil, +91 9881095647.
