Package jakarta.nosql.tck.basic
package jakarta.nosql.tck.basic
Provides the basic CRUD (Create, Read, Update, Delete) operations for interacting with NoSQL databases.
This package includes the fundamental operations that all NoSQL databases should support, including:
Template.insert(Object)
: Insert an entity into the database.Template.update(Object)
: Update an existing entity in the database.Template.delete(Class, Object)
: Delete an entity from the database by its ID.Template.find(Class, Object)
: Retrieve an entity by its ID.
These operations are designed to work seamlessly across different NoSQL database implementations. The methods in this package provide a uniform API for interacting with NoSQL databases, abstracting the underlying complexity of each NoSQL provider.
This package supports both single entity operations and batch operations for managing multiple entities at once. It is part of a larger framework designed to simplify NoSQL operations and provide a consistent, high-level API for common use cases.
- Since:
- 1.0.0
- See Also: