GithubHelp home page GithubHelp logo

Length extends beyond buffer about nstore HOT 4 OPEN

creationix avatar creationix commented on September 27, 2024
Length extends beyond buffer

from nstore.

Comments (4)

matthiasdg avatar matthiasdg commented on September 27, 2024

I had this problem as well. Did you edit your .db file manually? I noticed that this problem occurs if you have empty lines in the file; e.g. an empty line at the beginning, or you delete some entries manually and leave your cursor at the beginning of the last -now empty- line instead of at the end of the last populated line upon saving.

from nstore.

mauron85 avatar mauron85 commented on September 27, 2024

No I didn't edit db file manually. I can replicate the issue with my this db:
https://dl.dropboxusercontent.com/u/150742/nStore-bug.zip

and followin testing code

var nStore = require('nstore');
nStore = nStore.extend(require('nstore/query')());
var provider = nStore.new('provider.db', function () {
  console.log('DB provider loaded');
  provider.all(function (err, results) {
    if (err) console.log(err);
    else {
      console.log(results);
      results.forEach(function(result) {
        console.log(result);
      });
    }
  });
});

from nstore.

matthiasdg avatar matthiasdg commented on September 27, 2024

I took a quick look at your file and there is definitely something wrong with it; if you have an editor that shows line numbers, you'll see there is a line (25) starting with "photo" instead of a dbase key (after "were_here_count":3383 ). Normally, new lines start with a key.
If you delete that line completely (no idea what the missing part is; line 24 is complete, so it looks like there is quite a lot missing from 25), it works.

And in your test code, results is a single object (its keys are the dbase keys) so forEach won't work.

for(var key in results){
    console.log(results[key]);
}

So now your problem is reduced to finding out how your db file got corrupt :-)

from nstore.

mauron85 avatar mauron85 commented on September 27, 2024

You're right. Right now i'm investigating what caused the wrong data was written.

from nstore.

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.