Git Product home page Git Product logo

idl_storage_guidelines's People

Contributors

dvryaboy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

idl_storage_guidelines's Issues

Use of enums

I agree that specifying types is better than free form strings with known values defined outside the IDL. However there are some pitfalls to using enums (in particular in thrift but I guess in other places). The downside is adding a value to an enum is an incompatible change that will break readers using an older version of the IDL. Deserializing a record that contains an unknown enum throws an exception (again, this is true with thrift).
An alternative is to use Unions instead of enums. You can see a union as a more general form of the enum. The advantage is it's a cleaner way of defining fields that exist only if the enum is a certain type (ever done something like this ? if (record.getState() == SUCCESS) { doSomething(record.getResult()) }). If you encounter an unknown value with an old version of the IDL for the union then it returns null and it doesn't affect code that is doing something only for some of the known values. In the same example above if you add more precise states like FAILURE and ABORT, your code still works. adding types to a union is not a breaking change, adding values to an enum is.

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.