Giter Site home page Giter Site logo

level-mget's People

Contributors

heapwolf avatar wesleytodd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

wesleytodd

level-mget's Issues

Complex keys

This module currently only supports simple string keys. As leveldb supports complex key types, it would be nice to also support them here.

I can put together a PR that uses a Map to represent the return values, if that is something you would be interested in let me know.

Example:

mget(db, [['namespace', 'key']], function (err, vals) {
  console.log(vals); // Map{['namespace', 'key']: 'value'}
});

Handling of NotFound errors

Having only one error returned seems inconsistent when a NotFound error, which is most likely a "soft error", is treated just like a "real error". What do you think about adding handling for NotFound errors where the error is not set, but the value is set to undefined?

Consider this case:

  1. First get operation is an error opening the database, like a permissions error
  2. Some other condition causes access to be restored, like during execution, the permissions are fixed
  3. The next key is NotFound

The result of this sequence is a single NotFound error, and the other more important error being discarded silently. Thus hiding a race condition in your code, and a difficult to debug scenario.

The solution above will still swallow an error, but atleast it will not be the more common "soft error" case of a key not found.

Another more comprehensive solution, would be to accumulate all the errors, and make them come back as null || Map, where the key is set to the error in the map.

Thought?

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.