Skip to content

Commit

Permalink
feat!: add dynamodb registry (#220)
Browse files Browse the repository at this point in the history
The PR introduces a new model registry backed by AWS DynamoDB supporting
model CRUD operations and also provide a caching option.

---------

Signed-off-by: mboussarov <[email protected]>
  • Loading branch information
mboussarov committed Jun 29, 2023
1 parent dacae49 commit 0b0daed
Show file tree
Hide file tree
Showing 6 changed files with 943 additions and 2 deletions.
7 changes: 7 additions & 0 deletions numalogic/registry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,10 @@
pass
else:
__all__.append("RedisRegistry")

try:
from numalogic.registry.dynamodb_registry import DynamoDBRegistry # noqa: F401
except ImportError:
pass
else:
__all__.append("DynamoDBRegistry")
Loading

0 comments on commit 0b0daed

Please sign in to comment.