Git Product home page Git Product logo

Comments (3)

rklaehn avatar rklaehn commented on August 30, 2024

Here is what I tried. Forgive the bad rust, just playing around on a Sunday night...

fn read_feed(path: std::path::PathBuf) {
    let mut storage = Storage::new_disk(&path).expect("cannot create storage");
    let mut feed = Feed::with_storage(storage).expect("cannot create feed");
    println!("{} {:x?}", feed.len(), feed.public_key().as_bytes());
    let mut i = 0;
    while let Ok(Some(x)) = feed.get(i) {
        i += 1;
        println!("{} {:?}", i, x);
    }
    println!("{}", i);
}

I get a length of 0, and even if I read the feed I don't get any elements.

from hypercore.

khernyo avatar khernyo commented on August 30, 2024

Although I'm not familiar with this repo, from a quick glance, it seems that the on disk data is not read in at all. I guess this is very much a work in progress.

PRs are appreciated! :)

from hypercore.

theorangepotato avatar theorangepotato commented on August 30, 2024

It looks to me like the problem is with Storage::data_offset(), as indicated by this comment. (However, I could be wrong.)

I'm new to this codebase as well, so I'm not quite sure what the problem is, but if anyone else is interested in giving this a try, I believe this is the corresponding Javascript function.

The above may also be a part of the problem, but at the very least it is because while opening the feed it gets the correct keys, but it always assumes it has no data by creating empty data structures and setting its length to 0.

from hypercore.

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.