Waher.Persistence.Files
by: Peter Waher
- 2.337k total downloads
- Latest version: 1.16.0
Library that provides an object database that stores objects in local AES-256 encrypted files. Storage, indices, searching and retrieval is based solely on meta-data provided through the corresponding class definitions. Object serializers are created dynamically. Dynamic code is compiled.
Waher.Persistence.Serialization.Compiled
by: Peter Waher
- 596 total downloads
- Latest version: 1.11.0
Library that serializes objects to binary form using meta-data provided through the corresponding class definitions. Object serializers are created dynamically. Dynamic code is compiled. Compatible with Waher.Persistence.Serialization.
Waher.Persistence.XmlLedger
by: Peter Waher
- 152 total downloads
- Latest version: 1.2.3
The Waher.Persistence.XmlLedger project provides a simple ledger that records anything that happens in the database to XML files in the program data folder. Files are kept of a configurable amount of time.
Waher.Runtime.Cache
by: Peter Waher
- 232 total downloads
- Latest version: 2.1.2
Class library that helps with caching of objects in runtime environments.
Waher.Runtime.Collections
by: Peter Waher
- 73 total downloads
- Latest version: 1.0.3
Class library that contains specialized collections for increased performance.
For more information about ChunkedList, including benchmarking & performance:
https://lab.tagroot.io/Community/Post/ChunkedList
Waher.Runtime.Console
by: Peter Waher
- 82 total downloads
- Latest version: 1.2.0
Class library that helps with queueing and serialization of input and output to and from the Console in a multi-threaded environment, avoiding dead-locks when console is locked.
Waher.Runtime.Counters
by: Peter Waher
- 86 total downloads
- Latest version: 2.0.0
Class library that helps with counting events in runtime environments in a persistent and efficient and platform-independent manner.
Waher.Runtime.HashStore
by: Peter Waher
- 34 total downloads
- Latest version: 1.0.2
Class library that helps applications maintain receipts in persisted hash stores. Hash values can be easily stored in different realms, and can later be used to easily verify the existence of the hash. Hashes can also be distributed via distributed ledgers.
Waher.Runtime.Inventory
by: Peter Waher
- 916 total downloads
- Latest version: 1.4.5
Class library that keeps an inventory of types and interfaces available in your code. It also provides a means to access available types given an interface, and can find the best implementation to process a task or item. It can be used to implement an Inversion of Control Pattern, and helps instantiate interfaces, abstract classes and normal classes, including recursively instantiating constructor arguments. Handles singleton types.
Waher.Runtime.Inventory.Loader
by: Peter Waher
- 186 total downloads
- Latest version: 1.1.0
Class library that adds dynamic module loading capabilities to Waher.Runtime.Inventory.
Waher.Runtime.IO
by: Peter Waher
- 108 total downloads
- Latest version: 1.0.5
Class library that contains a small set of IO extensions and tools simplifying stream, file, string and certificate management.
Waher.Runtime.Language
by: Peter Waher
- 241 total downloads
- Latest version: 1.2.0
Class library that helps applications with language localization.
Waher.Runtime.Profiling
by: Peter Waher
- 266 total downloads
- Latest version: 1.1.2
Contains tools for profiling sequences of actions in multiple threads, as well as benchmarking. Results are accumulated, and can be exported to XML or as PlantUML Diagrams.
Waher.Runtime.Queue
by: Peter Waher
- 209 total downloads
- Latest version: 3.2.1
Contains a specialised FIFO Queue for asynchronous transport of items between tasks, as well as an asynchronous processor that can process tasks asynchronously. You can have multiple working tasks adding items to queues, as well as multiple working tasks subscribing to items from queues.
Waher.Runtime.Settings
by: Peter Waher
- 333 total downloads
- Latest version: 1.2.0
Class library that helps applications maintain a set of persistent settings. Server-side runtime settings, as well as host-specific and user-specific settings are supported.
Waher.Runtime.Temporary
by: Peter Waher
- 79 total downloads
- Latest version: 1.1.0
Contains classes simplifying working with temporary in-memory and file streams. TemporaryFile encapsulates a temporary file, manages filename and makes sure to delete the file when done. A TemporaryStream maintains content in-memory if below a threshold size limit, and switches to a TemporaryFile when content crosses threshold.
Waher.Runtime.Text
by: Peter Waher
- 207 total downloads
- Latest version: 1.2.0
Class library for working with text and text documents, particularly find differences between texts, or sequences of symbols, or mapping strings to a harmonized set of strings (or tokens).
Waher.Runtime.Threading
by: Peter Waher
- 221 total downloads
- Latest version: 2.1.2
Class library that provides classes for usage in multi-threaded asynchronous environments providing multiple-read/single-write capabilities. Support for async entry into read and/or write states, allowing for complex lock management in asynchronous methods, where different sections of the code are executed by different working threads.
Waher.Runtime.Timing
by: Peter Waher
- 199 total downloads
- Latest version: 2.1.1
Class library that helps with timing of events in runtime environments.
Waher.Script
by: Peter Waher
- 2.335k total downloads
- Latest version: 2.13.3
Class library that defines a script language and an object abstraction of computable elements. The library helps application parse and execute script. Script is extensible, and it is easy for modules to extend the script engine.
Script can be evaluated using either synchronous or asynchronous processing.
Script Syntax: https://waher.se/Script.md