Giter Club home page Giter Club logo

Comments (5)

Veeupup avatar Veeupup commented on May 23, 2024 2

/assignme

from openraft.

drmingdrmer avatar drmingdrmer commented on May 23, 2024 1

IMHO, the root cause of there being a lot of unwrap() is other fields that have not yet been updated, such as matched and last_applied, which will be replaced with Option in future.

Returning an error is no better than an unwrap() because at the top most level it has nothing to do but just panic.

My suggestion is:

  • For now, just use unwrap() if necessary, to keep simplicity.
  • Find some ways to avoid using unwrap(). E.g., when comparing a a: LogId and b: Option<LogId> it would be more elegant by doing it with Some(a) >= b, instead of a >= b.unwrap().

from openraft.

YangKian avatar YangKian commented on May 23, 2024 1

I see, thanks for the advice!

from openraft.

github-actions avatar github-actions commented on May 23, 2024

👋 Thanks for opening this issue!

Get help or engage by:

  • /help : to print help messages.
  • /assignme : to assign this issue to you.

from openraft.

YangKian avatar YangKian commented on May 23, 2024

Hi~ I have an idea to discuss with you guys, make last_log_id an Option<LogId> may introduce a lot of unwrap operations, fortunately, PR #94 adds a return error type for many APIs, so I would like to add a helper function for RaftCore:

impl RaftCore {
    fn get_last_log_id(&self) -> Result<LogId, SomeErr>
}

use option.ok_or_else() to convert None to an Err.

What do you think? Also regarding the error type returned, should I add a new error type or return an existing error? Would like to hear your suggestions! @drmingdrmer @Veeupup

from openraft.

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.