forked from tl-its-umich-edu/instructor-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
redis
service to improve LTI launch performance (tl-its-umich-e…
…du#277) * Add some experimental refactoring, cleanup, and settings * Tweak error throwing so message is shown to user; log LtiException * Modify error message extraction, construction * Update import syntax, order * Remove unused import, one-line other imports * Add newline * Add maybe functional redis implementation? * Simplify redis setup; add password auth * Upgrade to latest django-redis * Remove django-mysql cache configs * Apply suggestions from code review Update REDIS to support full URL and document values --------- Co-authored-by: Code Hugger (Matthew Jones) <[email protected]>
- Loading branch information
Showing
7 changed files
with
76 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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 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,6 +4,7 @@ webpack-stats.json | |
# MySQL data files | ||
.data | ||
ngrok.yml | ||
redis.conf | ||
|
||
# Temp files | ||
*.swp | ||
|
This file contains 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 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 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 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,2 @@ | ||
loglevel debug | ||
requirepass 'some password here' |
This file contains 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