You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add valkey module and keydb and dragonfly redis services (#83)
- Consolidate AlloyDB into the existing postgres module.
- Updated tags for AlloyDB Omni and pgvector
- Add `postgres_user` and `postgres_password` fixtures.
- Add dedicated `keydb` and `dragonfly` fixtures
- Add `valkey` service that uses `valkey` python client instead of `redis`
Copy file name to clipboardExpand all lines: docs/supported-databases/postgres.rst
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
PostgreSQL
2
2
==========
3
3
4
-
Integration with `PostgreSQL <https://www.postgresql.org/>`_ using the `PostgreSQL Docker Image <https://hub.docker.com/_/postgres>`_ or `pgvector Docker Image <https://hub.docker.com/r/ankane/pgvector>`_
4
+
Integration with `PostgreSQL <https://www.postgresql.org/>`_ using the `PostgreSQL Docker Image <https://hub.docker.com/_/postgres>`_, Google's `AlloyDB Omni <https://cloud.google.com/alloydb/omni?hl=en>`_ or `pgvector Docker Image <https://hub.docker.com/r/ankane/pgvector>`_
5
5
6
6
Installation
7
7
------------
@@ -36,22 +36,25 @@ Usage Example
36
36
Available Fixtures
37
37
------------------
38
38
39
+
* ``postgres_user``: The PostgreSQL user.
40
+
* ``postgres_password``: The PostgreSQL password.
41
+
* ``postgres_database``: The PostgreSQL database name to use.
39
42
* ``postgres_image``: The Docker image to use for PostgreSQL.
40
43
* ``postgres_service``: A fixture that provides a PostgreSQL service.
41
44
* ``postgres_connection``: A fixture that provides a PostgreSQL connection.
42
45
43
46
The following version-specific fixtures are also available:
44
47
48
+
* ``alloydb_omni_image``, ``alloydb_omni_service``, ``alloydb_omni_connection``: Latest Available AlloyDB Omni 16 Docker image.
Copy file name to clipboardExpand all lines: docs/supported-databases/redis.rst
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Redis
2
2
=====
3
3
4
-
Integration with `Redis <https://redis.io/>`_
4
+
Integration with `Redis <https://redis.io/>`_ using the `Redis Docker Image <https://hub.docker.com/_/redis>`_, Snap's `Key DB<https://docs.keydb.dev/>` or `Dragonfly <https://www.dragonflydb.io/>`_.
5
5
6
6
Installation
7
7
------------
@@ -43,6 +43,11 @@ Available Fixtures
43
43
* ``redis_service``: A fixture that provides a Redis service.
44
44
* ``redis_connection``: A fixture that provides a Redis connection.
45
45
46
+
The following version-specific fixtures are also available:
0 commit comments