-
Notifications
You must be signed in to change notification settings - Fork 0
Postgres ObjectCache Backend #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
f3baaf5
add pg and tc
milt da8e0ff
model for backend switch
milt bc8f07d
config defaults to sqlite
milt f649c7f
pg objectcache impl, split queries by backend
milt 8b163fa
docs for current impl
milt d510778
stale dynamic array bug
milt c87a8fc
remove redundant indices
milt c591f8c
add docker compose for dev convenience
milt f89e4fe
all settings to env
milt 662bd45
Merge branch 'main' into postgresql
milt de55ef3
remove old convenience method with no callers
milt 7d0debf
comment about convenience constructor for ObjectCache
milt 2d05462
Merge branch 'main' into postgresql
milt de96928
Merge branch 'main' into postgresql
milt 65e81ee
silence tc, oh I wish we could use logback
milt de528f3
make pg driver available at runtime
milt 2bd0aa0
don't trim username/password
milt 2f1fdd6
note about docker
milt f7093ea
shady
cliffcaseyyet c104e6b
pom cleanup
cliffcaseyyet 06ce41d
Merge pull request #37 from yetanalytics/maven_adventures
cliffcaseyyet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,3 +4,4 @@ target/ | |
| logs/ | ||
| *.sqlite | ||
| lib/ | ||
| dependency-reduced-pom.xml | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| services: | ||
| postgres: | ||
| image: postgres:17 | ||
| environment: | ||
| POSTGRES_DB: hla_xapi | ||
| POSTGRES_USER: hla_xapi | ||
| POSTGRES_PASSWORD: hla_xapi_dev | ||
| ports: | ||
| - "5432:5432" | ||
| volumes: | ||
| - postgres-data:/var/lib/postgresql/data | ||
| healthcheck: | ||
| test: ["CMD-SHELL", "pg_isready -U hla_xapi -d hla_xapi"] | ||
| interval: 5s | ||
| timeout: 5s | ||
| retries: 10 | ||
|
|
||
| volumes: | ||
| postgres-data: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i know this is from previous PR but maybe put an "OR" in here for clarity