Coder Social home page Coder Social logo

Increase saving speed about jabref HOT 5 CLOSED

jabref avatar jabref commented on May 9, 2024
Increase saving speed

from jabref.

Comments (5)

koppor avatar koppor commented on May 9, 2024

One caller modifying the array is net.sf.jabref.logic.bibtex.BibtexEntryWriter.writeNewStyle(BibtexEntry, Writer). Possibly a cache of the sorted fields would help.

from jabref.

lenhard avatar lenhard commented on May 9, 2024

I had a look in this problem and the only place where the arrays are modified are the positions you mentioned above. Hence it is "save" to remove the call to clone and to introduce a cache. This is done in 8b2821d

@koppor: I do not have such a large bibtex file. Can you please check if the change really has an impact on saving speed?

However, I really don't like the change. The underlying problem is that someone is trying to modify the optionalFields / requiredFields, which should not be possible (and has already caused bugs). How about changing the return types of these methods from String[] to List<String> and having the methods return an unmodifiable reference to the internal list via Collections.unmodifiableList(). This should not punish performance too much, since it is not a copy, but just an unmodifiable view on the internal list. The benefit is that if someone tries to modify the list, she will get an exception at runtime. Changing the return type triggers changes at several positions in the code, but the changes are fairly simple, i.e., just a conversion from array to list. Opinions on that?

from jabref.

lenhard avatar lenhard commented on May 9, 2024

Related: #123

from jabref.

koppor avatar koppor commented on May 9, 2024

👍 for List<String>. "Item 25: Prefer lists to arrays" of Effective Java, even though our setting is different from the one described there.

from jabref.

koppor avatar koppor commented on May 9, 2024

A quick check showed that it increases the saving speed. Additional tests, maybe with artificially generated bibtex files might be required.

from jabref.

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.