Skip to content

Commit 97065ff

Browse files
added new method in storage to get storage type
1 parent 8ba7a87 commit 97065ff

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/pyop/storage.py

+12
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,18 @@ def from_uri(cls, db_uri, collection, db_name=None, ttl=None, **kwargs):
9595

9696
return ValueError(f"Invalid DB URI: {db_uri}")
9797

98+
@classmethod
99+
def type(cls, db_uri):
100+
url = urlparse(db_uri)
101+
if url.scheme == "mongodb":
102+
return "mongodb"
103+
elif url.scheme == "redis" or url.scheme == "unix":
104+
return "redis"
105+
elif url.scheme == "stateless":
106+
return "stateless"
107+
108+
return ValueError(f"Invalid DB URI: {db_uri}")
109+
98110
@property
99111
def ttl(self):
100112
return self._ttl

0 commit comments

Comments
 (0)