Create or Modify Counters


  • Use the countersFor.increment method to create a new Counter or modify an existing Counter's value.

  • If the Counter exists, increment will add the specified number to the Counter's current value.
    If the Counter doesn't exist, increment will create it and set its initial value.

  • For all other countersFor methods see this Overview.

  • In this page:


Increment usage

Flow:

  • Open a session.
  • Create an instance of countersFor.
  • Call countersFor.increment.
  • Call session.saveChanges for the changes to take effect.

Note:

  • Modifying a Counter using increment only takes effect when session.saveChanges() is executed.
  • To decrease a Counter's value, pass the method a negative number to the increment method.

Example

// Open a session
const session = documentStore.openSession();        
       
// Pass a document ID to the countersFor constructor 
const documentCounters = session.countersFor("products/1-A");

// Use `countersFor.increment`:
// ============================

// Increase "ProductLikes" by 1, or create it if doesn't exist with a value of 1
documentCounters.increment("ProductLikes", 1); 

// Increase "ProductPageViews" by 15, or create it if doesn't exist with a value of 15
documentCounters.increment("ProductPageViews", 15);

// Decrease "DaysLeftForSale" by 10, or create it if doesn't exist with a value of -10
documentCounters.increment("DaysLeftForSale", -10);

// Save changes
await session.saveChanges();

Syntax

increment(counter);
increment(counter, delta);
Parameter Type Description
counter string The counter's name
delta long Increase Counter by this value.
Default value is 1.
For a new Counter, this number will be its initial value.