one
TypeScript icon, indicating that this package has built-in type declarations

6.0.1 • Public • Published

One logo

ONE

One is a browser side application cache. It guarantees entity uniqueness across the entire cache.

Npm Status Build Status Coverage Status

Each entity tracked for uniqueness must have a unique id. There is precisely ONE distinct entity in the cache for each unique id. Entities that do not have a unique id are still cached but not tracked for uniqueness.

Changes

  1. Complete rewrite in typescript.
  2. Fix some subtle bugs related to object structure (ie modifiying arrays would sometimes behave unpredictably based on the parent's structure).
  3. Remove the need for babel-polyfill
  4. Breaking api changes: Simplified minimal api. You really only need the commands in the table below. There are a couple of other options mostly for debugging (see the Api section for the development api list).
Command Action
getCache Create or access a specific version of the cache. There can be multiple concurrent versions of the cache in case distinct versions of the same entity are needed (for example if display and edit data need to be different until a user commits changes). One.getCache('edit') would create a cache dedicated to edit operations.
put Add an entity to the cache and make it immutable.
get Retrieve an entity from the cache. This is a fast hash map locator.
getEdit Get a shallow editable version of the entity from the cache. Inner nested entities are still immutable. This is in order to make efficient use of trie structures.
evict Remove an entity from the cache. Evicts it from all parents as well.

Api

In addition to the 5 production api commands there are 4 options intended for development:

Command Action
reset Resets the cache to empty. Useful for testing.
length Number of nodes in the current cache. Each node contains one atomic change to the cache so moving between nodes gives you time travelling.
size Number of entities cached on the current node (the size of the node).
print Provides a printable representation of the entire cache that can be passed on to a logger. Slow. For debugging only. Do not use in production.

Usage

npm install one --save

or

yarn add one

Use it

import * as One from 'one'
 
// get a hold of an instance
let one = One.getCache()
 
// you can then use the instance to cache items
one.put(item)
 
// One.getCache() is a singleton so you can also do this
One.getCache().put(item)
 
// or if you are only using the default instance of the cache
One.put(item)

Or simply put one.min.js on your page to access the One global variable from anywhere. In this case the instance is created for you and you can access it directly.

One.put(item)

Some code

let item1 = { uid:1 }
let item2 = { uid:2, ref:item1 }
 
One.put(item2)
 
// puts all items with uid separately in the cache
 
One.get(item1) === undefined // false (item1 is added from item2)
item1 === One.get(item1) // true (same object)
item2.ref === One.get(1) // true

Immutable

All data is immutable. Once an item enters the cache it freezes and cannot change. This is to enable quick identity checks against immutable entities (ie React / Redux identity check).

let item = { uid:1 }
Object.isFrozen(item) // false
 
One.put(item);
Object.isFrozen(item) // true
 
let result = One.get(item)
result === item // true

If you later want to edit a reference of the object you can get an editable copy from the cache. This gives you a separate clone of the object that is now editable:

let item = { uid:1 }
One.put(item)
 
let editable = One.getEdit(1) // or cuid.getEditable(item1);
Object.isFrozen(editable) // false
item === editable // false
 
editable.text = "test"
One.put(editable)
 
let edited = One.get(1)
edited.text = "text" // true
Object.isFrozen(edited) // true

Important Edit clones are shallow. If you want to edit a nested child that also has a uid you must get an editable copy of the child.

const item1 = { uid:1 } // uid item cached separately
const item2 = { value: 'test' } // item has no uid - it will be cloned for edit
const item = {
  uid: 1,
  item1,
  item2
}
 
one.put(item)
 
const editable = one.getEdit(item)
 
Object.isFrozen(editable.item1) // true - item1 has a uid - not cloned
item1 === editable.item1 // true
 
Object.isFrozen(editable.item2) // false item2 has no uid - it will be cloned
item2 === editable.item2 // false

Editing an item changes all its instances in the cache:

let item = { uid:1 }
let item2 = { uid:2, child:item }
 
One.put(item2)
 
One.get(1) === item // true
One.get(2) === item2 // true
 
// Let's do some editing
let editable = One.getEdit(1);
editable.text = "test"
One.put(editable) // also updates item2 reference to item
 
let result = One.get(2)
console.log(JSON.stringify(result.item)) // {uid:1, text:"test"}

Configuration

For existing code bases the name of the uid property can be configured via a config object passed as a second argument to the .getCache() method. In order for this to work correctly the values held by the configured property must be unique across all instances.

const one = One.getCache('test', { uidName:'id' })
 
const item = { id:'unique_id_value' }
 
one.put(item)
 
one.get('unique_id_value') !== undefined // true (works)

Motivation

More an more applications are giving users the ability to edit data in the browser. With a normalized data model various instances of an entity can exist at the same time in different locations. This depends on how data is received from the server and added to the local model / store.

This is inconvenient because:

  • Keeping all the instances in sync can be a daunting task.
  • It can make debugging hard.
  • It requires tracking each instance and makes reasoning about data complicated.
  • It can make the application structure needlessly complex.

Redux brings a great breakthrough by putting the entire application state in one place and mutating it only via dispatched actions. But it doesn't enforce entity uniqueness. One aims to take the concept a step further by making each entity unique and immutable in a single store (cache).

Performance considerations

  • Read optimized: Yes there is a performance cost in analyzing each entity deeply to track its dependencies. One mitigates this by being read optimized. The penalty is incurred on write operations only. These happen a lot less frequently than read ops. Read ops are super fast (a simple key lookup).
  • Trie structures: Data is stored in a trie like structure. This way all entities are referenced (not copied) and minimal changes are performed on every put or getEdit operation.

Data shape

This is not currently designed to work with cyclical data. It is best for non-cyclical objects received from the server in the form of json (or other non-cyclical fomats). It might happen later if there's a need.

Package Sidebar

Install

npm i one

Weekly Downloads

77

Version

6.0.1

License

MIT

Last publish

Collaborators

  • danmaier