A Topic Data
is a key-value store. Keys are specified as Topic
strings and values can be arbitrary data.
The RuntimeTopicData
is a runtime implementaion of a topicData
. "Runtime" means the data is only available at runtime and is not permanently stored in a persistent medium such as a local file or a database. The data lives only in the program memory.
The RuntimeTopicData
uses a common javascript object as storage structure that resembles the topic hierarchy. This is a very performant way to find key-value pairs.
A Topic
is simple string indicating a chain of topics that are in a parent-child relation. Childs can be seen as subtopics of the previous one. The individual (sub-)topics are separated by a special character ("->").
The follwoing string is an example for a valid Topic
:
valid = 'root->subtopic1->subtopic2->subtopic3->subtopic4';
- Run
npm test
to process all standard tests. See the Testing section for more details on tests.
- This module uses the AVA test runner.
- You can add new tests to the test folder. Entry point for the test runner is test.js within the test folder. See the AVA Documentation for more details on how to create new test cases for AVA.