GithubHelp home page GithubHelp logo

Comments (2)

jkleinsc avatar jkleinsc commented on July 3, 2024 1

@izadmehr The readme explains it here:
https://github.com/nolanlawson/relational-pouch#dbrelmakedocidparsedid
It provides a natural sort order for keys.

On reason it is useful is that you can easily determine min and max keys for a particular document type, which can be used as startkey/endkey on Batch Fetch and Query
Here's some example code determining min and max keys for an object type of "person":

var minId = db.rel.makeDocID({ "type": "person");
var maxId = = db.rel.makeDocID({ "type": "person", "id": {}); 

This would produce a minId of person_0 and a maxId of person_3 which according to sort order would make min id less than a id of number or string (eg less than person_1_0000000000000123 or person_2_onetwothree) and the max id would be greater than these ids.

Does that make sense?

from relational-pouch.

izadmehr avatar izadmehr commented on July 3, 2024

Thanks for your answer @jkleinsc. I'm working on syncing pouchDB with couchBase, so data added to couchBase & used in PouchDB. I think this id generator is not necessary. Just adding prefix with underline, do the work.

from relational-pouch.

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.