Hi,
I'm developing a function that makes use of the old-school node crawler object (it actually suited my exact use case perfectly). one of the things I liked about it was that you can store the results of the node crawl in the LLCache table which lends itself nicely to agents and distributed agents, where you might have one instance crawl 100 nodes, then let another DA pick up the next 100 and so on.
While testing the saving and retrieving from cache, I got this warning message in Builder (I'm starting this on CS 10.0 as that's what is being used at the client):
KMemcached::Replace Error - key not found.
The line that generates it is this one :
checkVal = $LLIAPI.MemcachedUtil.ReplaceValue( prgCtx, .fMemcachedNamespace, objectID, memCacheStore, numSec ) which is called from within _Write() which is called within $LLIAPI.CacheUtil.new().
Can someone explain that error message and if it is serious?
Thanks in advance
-Hugh Ferguson