Git Product home page Git Product logo

Comments (7)

palkan avatar palkan commented on May 14, 2024 1

Why namespaced class has the cache but class without namespaced hasn't.

Namespaced lookup is more expensive. I've added a benchmark which shows that it could be 4x slower without cache:

Comparison:
               cache:   178745.5 i/s
             cache B:   169435.4 i/s - same-ish: difference falls within error
          no cache A:    95312.7 i/s - same-ish: difference falls within error
          no cache B:    43121.0 i/s - 4.15x  slower

Also as I see from the source, found namespaced policy also cache in the object and in the thread. Will not it be easy and simple just remove NamespaceCache mechanism 🙂?

NamespaceCache caches a policy class for a given namespace and a policy name, we use it every time we want to initialize a policy within the matching context.
Per-thread and instance caches store policy instances, they only re-used within a single request. We still have to resolve a policy class.

from action_policy.

jacobwalkr avatar jacobwalkr commented on May 14, 2024

Could this be related to #14?

from action_policy.

gururuby avatar gururuby commented on May 14, 2024

@jacobwalkr may be. There are additions if I call authorize! and specify policy directly via the with option, changes in the policy are applied without restarting the server

from action_policy.

ycherniavskyi avatar ycherniavskyi commented on May 14, 2024

Got the same reload issue.
After some investigation found the reason - NamespaceCache class, which hold Hash with first-time loaded policy class and clear it only on init.

Seams that in development this cache must be disabled or must be clearing on each request.

from action_policy.

palkan avatar palkan commented on May 14, 2024

@ycherniavskyi

Thanks for the investigation!

Seams that in development this cache must be disabled or must be clearing on each request.

We should add a configuration to disable this cache, and disable it by default in development env.

We can also embrace app.reload.before_class_unload callback for Rails 5 and clear the cache.

If anyone is willing to propose a PR – you're welcome! If not – I'll take care of it a little bit later.

from action_policy.

ycherniavskyi avatar ycherniavskyi commented on May 14, 2024

@palkan could you please explain a bit the exact purpose of NamespaceCache class. Why namespaced class has the cache but class without namespaced hasn't.

Also as I see from the source, found namespaced policy also cache in the object and in the thread. Will not it be easy and simple just remove NamespaceCache mechanism 🙂?

from action_policy.

palkan avatar palkan commented on May 14, 2024

Fixed by 1d4a2e7 and released in 0.2.3.

from action_policy.

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.