We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an issue with the creation of molfile in memory. I'm creating 2500 molfile but in the memory heap snapshot it seems I have 9000000 entries
I think that in memory we keep all the different length of the string obtained during creation / concatenation:
https://github.com/cheminfo/openchemlib/blob/23bd145d76f2be249ea279415e2c59e54c965fba/src/main/java/com/actelion/research/chem/MolfileCreator.java#L201-L228
Does this makes sense ?
Is there a way to 'clean' the memory like doing something like JSON.parse(JSON.stringify(molfile)) ?
JSON.parse(JSON.stringify(molfile))
@targos WDYT ?
The text was updated successfully, but these errors were encountered:
Need to check if flatstr (https://github.com/davidmarkclements/flatstr/blob/master/index.js) helps
Sorry, something went wrong.
If it does, I suggest to create an issue in the V8 tracker: https://bugs.chromium.org/p/v8/issues/list
No branches or pull requests
I have an issue with the creation of molfile in memory. I'm creating 2500 molfile but in the memory heap snapshot it seems I have 9000000 entries
I think that in memory we keep all the different length of the string obtained during creation / concatenation:
https://github.com/cheminfo/openchemlib/blob/23bd145d76f2be249ea279415e2c59e54c965fba/src/main/java/com/actelion/research/chem/MolfileCreator.java#L201-L228
Does this makes sense ?
Is there a way to 'clean' the memory like doing something like
JSON.parse(JSON.stringify(molfile))
?@targos WDYT ?
The text was updated successfully, but these errors were encountered: