Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kellyselden/ember-cli-find-cached
Combining Ember Data's store find() and all()
https://github.com/kellyselden/ember-cli-find-cached
Last synced: 16 days ago
JSON representation
Combining Ember Data's store find() and all()
- Host: GitHub
- URL: https://github.com/kellyselden/ember-cli-find-cached
- Owner: kellyselden
- License: mit
- Created: 2014-12-27T17:47:43.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-23T00:37:24.000Z (over 9 years ago)
- Last Synced: 2025-01-02T05:44:12.182Z (24 days ago)
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
#ember-cli-find-cached
Combining Ember Data's store find() and all(). Fresh calls use find(). Any subsequent calls use all(). It is useful if you are using other ways to refresh models.
##Usage
`npm install --save-dev ember-cli-find-cached`
```javascript
this.store.findCached('product')
```