GithubHelp home page GithubHelp logo

Comments (2)

garycourt avatar garycourt commented on July 21, 2024

Due to the features in JSON Schema, all schemas must be cached after creation. To clean up your memory, destroy (dereference) the environment after you are finished validating.

from jsv.

davepacheco avatar davepacheco commented on July 21, 2024

That's a fair point. So I ran a slightly modified test:

var input = {};
var count = 0;

for (;;) {
    env = mod_jsv.JSV.createEnvironment()
    env.validate(input, schema);
    if (++count % 1000 === 0)
            console.log(count);
}

I also ran this for about 18000 iterations, and the ::findjsobjects output now shows:

> ::findjsobjects
OBJECT   #OBJECTS #PROPS CONSTRUCTOR: PROPS
...
fd0d0bf5      240     10 <anonymous> (as Components): errors, scheme, ...
fc0e4171      304      1 Object: type
fd0ce3a5      408      2 ReplaceResultBuilder: special_string, elements
 8044ead      421      1 Object: <unknown>
fc0d7901     1014      0 Object:
fc0bf8b1     1494      7 JSONSchema: _value, _env, _fd, _uri, _refs, ...
fc0c195d     8717      4 JSONInstance: _value, _env, _fd, _uri

This certainly looks a lot better. Since there's less than one object per validation, maybe these objects are actually garbage that hasn't been collected yet.

Additionally, after 3 minutes and 10000+ iterations, the VSZ and RSS haven't really grown much beyond about 30MB. Thanks!

from jsv.

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.