The information your giving is quite unclear ! What command do you run that doesn't do what you expect ? What do you expect ? What do you get ?
>From what I understand, you're doing a set but your value is not in memcached, but I'm really not sure I'm right ! You should always try to give as much information as possible when asking for help. >From your stats, you have no eviction, no flush has been done, there are only one hit and a lot of misses and some free chunks in your slabclass 1 and you're far from your memory limit. It means: - you should be able to insert small items ( ~ 40 bytes ) in slabclass 1 - you should be able to insert bigger items (up to 1MB) by allocating a slab in another slabclass - you did two updates, so maybe you're just reinserting a value already inserted - you hit on one get, could it be linked to your problem (maybe you're not inserting after as you didn't miss, but data is present in cache has you had a hit) 2009/6/3 Jumping <[email protected]>: > On Wed, Jun 3, 2009 at 4:21 PM, Toru Maesaka <[email protected]> wrote: >> >> What exactly is the error that you're getting? we can help you more if >> you paste the error that you're getting. >> >> Are you suspecting that memcached is behaving oddly due to a count >> mismatch from your application? If so, it could be possible that >> you're doing something funky in your script. >> >> It would help even more if you paste the script. >> >> Cheers, >> Toru >> >> On Wed, Jun 3, 2009 at 3:23 PM, Jumping <[email protected]> wrote: >> > Dustin, >> > Thanks, my mean is run the insert script, my script can not >> > insert >> > the all words into the memcache completely. >> > Best Regards, >> > Jumping Qu >> > ------ >> > Don't tell me how many enemies we have, but where they are! >> > (ADV:Perl -- It's like Java, only it lets you deliver on time and under >> > budget.) >> > >> > >> > On Wed, Jun 3, 2009 at 12:50 PM, Dustin <[email protected]> wrote: >> >> >> >> >> >> On Jun 2, 8:21 pm, Jumping <[email protected]> wrote: >> >> > Hi, >> >> > I insert words to my memcached(1.2.8) use php script. I found i >> >> > only >> >> > can >> >> > insert about 52251 words, then can not continue to do insert. And the >> >> > all >> >> > words in one Slab. >> >> >> >> What do you mean when you say you can not insert? >> > >> > > > Actually, I can insert now. But only in one slab.
