Code Monkey home page Code Monkey logo

objectstoreprovider's Introduction

ObjectStoreProvider Build Status

We developed ObjectStoreProvider after needing a simplified interface toobject storage/retrieval that worked not only across all browsers. We also have built a fully in-memory database provider that has no persistence but supports fully transactional semantics, for a fallback in situations where you don't want persistence (ephemeral logins, etc.)

Differences to NoSqlProvider

This project has some notable differences to NoSqlProvider, and these differences are why it is a separate repo

  1. Support for removeRange apis.
  2. Support for getMultiple on any index.
  3. Unlike in the case of ObjectStoreProvider, the inMemoryProvider is actually mutable. This was mainly done as we enforce immutability using typescript DeepReadonly types. Consumers should be aware of this while consuming the library. In the near future we will change to interfaces throughout the project to return readonly types. It is highly recommended that consumers add lint rules that prevent casting to , or operations like Object.assign() which will break the immutability.
  4. Targets ES6, and higher ES versions for better performance
  5. It uses red-black tree based indices for better performance of the inMemory provider

The rest of these changes in the library have been pushed upstream to ObjectStoreProvider as well. However, points 3, 4 & 5 are irreconcilable as it needs to be enforced across all consumers of ObjectStoreProvider. Hence this repo has been made separately.

Examples

None available, we will add some soon!.

Providers/Platforms/Support

Browsers: Firefox, Safari, Edge, Chrome. Execution Contexts: WebWorkers, SharedWorkers, ServiceWorkers, Browser context.

Desktop Frameworks: WebView2, Electron

Other support: NodeJS

Usage

Coming soon.

Compiling

Source

yarn install
yarn build

Tests

yarn install
yarn ci-test

Testing

If a test fails and you need to run the individual tests, see which test command failed from the above run .i.e karma.sharedworker.conf.js, karma.webworker.conf.js, karma.browser.conf.js Once identified, simply run the following

yarn install
yarn build
yarn test:debug:<target>

Where <target> is either webworker, sharedworker or browser. Look through package.json for more details. The default runner will launch both firefox + chrome in debug mode.

To iterate over tests, instead of the yarn build command mentioned above, run yarn watch instead.

Contributing

Please read the Contributing guide.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.

objectstoreprovider's People

Contributors

amitshankar-msft avatar balaji-viswanathan avatar berickson1 avatar boguscoder avatar caseyyu2 avatar danielmsft avatar dependabot[bot] avatar deregtd avatar dryganets avatar eliranek1 avatar erictraut avatar joshuahenson avatar m1les avatar mariarek avatar masterkidan avatar michtsu avatar ms-deregtd avatar ms-markda avatar rspeyer avatar sudhar123 avatar thomastay avatar vancems avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

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

objectstoreprovider's Issues

remove range does not support non-primary index

can easily reproduce this from UT, both impacting inmemory and db provider

the root cause here is because removeInternal() is actually only accepting primary keys

image

because the mergedData is keyed by primary key
image

Remove unused rb-tree versions

It looks like the collectable dependency was removed in 21cd0c8

I don't see a reason why the rb-tree dep should still be in the project, please remove it. Exact list of packages to remove:

 "@collectable/core": "^5.0.1",
 "@collectable/red-black-tree": "5.0.1",

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.