Giter VIP home page Giter VIP logo

Comments (6)

erwanor avatar erwanor commented on May 28, 2024 4

I think @bluele must be very busy at the moment. I'm not clear on whether he plans to keep maintaining this project going further.

FTR: I thought this issue was introduced by b9993a9 but it seems to have been present for much longer. We need way better testing coverage to prevent this from happening in the future.

@skurfuerst I will fix that this week. I need some time to draft a correct implementation and then implement the expirable entries features, write more extensive tests etc.

from gcache.

erwanor avatar erwanor commented on May 28, 2024 2

Looks like the ARC cache completely falls apart when expirable entries are enabled.

https://github.com/bluele/gcache/blob/master/arc.go#L122

if elt := c.b2.Lookup(key); elt != nil {
	c.part = maxInt(0, c.part-maxInt(c.b1.Len()/c.b2.Len(), 1))
	c.replace(key)
	c.b2.Remove(key, elt)
	c.t2.PushFront(key)
	return item, nil
}

Zooming on c.replace(key) (https://github.com/bluele/gcache/blob/master/arc.go#L40):

func (c *ARC) replace(key interface{}) {
	var old interface{}
	if (c.t1.Len() > 0 && c.b2.Has(key) && c.t1.Len() == c.part) || (c.t1.Len() > c.part) {
		old = c.t1.RemoveTail()
		c.b1.PushFront(old)
	} else if c.t2.l.Len() > 0 {
		old = c.t2.RemoveTail()
		c.b2.PushFront(old)
	} else {
		return
	}

        // old = "test1" <----- Here
	item, ok := c.items[old]
	if ok {
		delete(c.items, old)
		if c.evictedFunc != nil {
			c.evictedFunc(item.key, item.value)
		}
	}
}

Zooming further down that execution path:

else if c.t2.l.Len() > 0 {
    old = c.t2.RemoveTail()
    c.b2.PushFront(old)
}

I'm not clear on whether the t2 sub-ARC cache should be filled up at all (before entries become eligible for eviction) in which case the logic fails in the way data is balanced/distributed among the sub-caches or if (c.t1.Len() > 0 && c.b2.Has(key) && c.t1.Len() == c.part) || (c.t1.Len() > c.part) should evaluate to true.

@bluele can you look into this or give me a high-level overview of the right behavior for ARC internals? thanks!

from gcache.

skurfuerst avatar skurfuerst commented on May 28, 2024 2

I believe we are also hit by this. Anything we can do to have this fixed? :)

from gcache.

erwanor avatar erwanor commented on May 28, 2024

Thanks for reporting, I was able to reproduce it on my machine. I will investigate this.

from gcache.

deepakprabhakara avatar deepakprabhakara commented on May 28, 2024

Thanks @aaronwinter @bluele for looking into this.

from gcache.

bluele avatar bluele commented on May 28, 2024

Sorry for very late response.
This issue is solved by #58.

from gcache.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.