Giter Site home page Giter Site logo

Comments (1)

WisdomPill avatar WisdomPill commented on July 24, 2024

hello @sinall, this is not the intended use of the library but most importantly you're using a class attribute and not an instance attribute, so actually cross_section_sequence is shared among all instances and initialised at declaration time (of CrossSectionFactory).

An example of what happens with class attributes is the following:

>>>class A:
...    b = {}
    
>>>A.b
{}
>>>a = A()
>>>a.b
{}
>>>A.b["a"] = "a"
>>> a.b
{'a': 'a'}
>>>class A:
...    b = {}
    
>>>a.b
{'a': 'a'}
>>>A.b
{}

so redeclaring class A overwrites class attributes. I would suggest you to cache only cross_section_sequence if you are interested in sharing that between processes/servers. I strongly discourage using pickle as it has security issues and is not that performant in big scale apps

from django-redis.

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.