Giter VIP home page Giter VIP logo

Comments (6)

swankjesse avatar swankjesse commented on August 24, 2024

My main gripe is that calling close() isn't necessary. Another way to write the code above is:

boolean success = false;
Editor e = cache.edit(key);
try {
  // edit values
  e.commit();
  success = true;
} finally {
  if (!success) e.abort();
}

I can't claim that this is any better. But I do think it's more intention-revealing.

from disklrucache.

orip avatar orip commented on August 24, 2024

@swankjesse What bothers me with the current interface is that I have to maintain the success state in every scenario that I edit keys. If it's inherent to editing, I lean towards the Editor having explicit support for this state.

An alternative would be just keeping and exposing the state instead of creating the .close() logic:

...
} finally {
  if (!e.wasCommitted())
    e.abort();
}

but making the Editor closeable feels elegant to me, and I think maps to Java's idioms better.

from disklrucache.

swankjesse avatar swankjesse commented on August 24, 2024

Do we all hate this name?

e.abortUnlessCommitted() ?

I'm coming around to close(), but I still dislike the fact that it makes a naked commit() look leaky.

from disklrucache.

JakeWharton avatar JakeWharton commented on August 24, 2024

I like it. Close doesn't exactly convey what's happening behind the scenes.

from disklrucache.

orip avatar orip commented on August 24, 2024

That's a really good name.

from disklrucache.

JakeWharton avatar JakeWharton commented on August 24, 2024

Merged to dev.

from disklrucache.

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.