-
Notifications
You must be signed in to change notification settings - Fork 0
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
Camp 881 redis sets #10
Merged
+585
−43
Merged
Changes from 20 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
881f281
CAMP-881: expose basic redis sets functionality
6018025
CAMP-881: add child keys concept
71dd5e9
CAMP-881: add parentKey arg to write method
27bda09
CAMP-881: add parentKey arg to write method
e582b8d
CAMP-881: add parentKey arg to write method
445a046
CAMP-881: add prefix to child set key if not present
1228cd1
CAMP-881: make parentKey arg support an array of keys
800b649
CAMP-881: move childset key suffix to private property
1d709e1
CAMP-881: update fallback engine to use active cache's key method
dfea125
CAMP-881: support different cache key parents with multi val write
5f656c2
CAMP-881: ensure keys are deduped before deletion command
18cc4e2
CAMP-881: ensure keys are deduped before deletion command
5345215
CAMP-881: ensure keys are deduped before deletion command
699fd7a
CAMP-881: ensure keys are deduped before deletion command
6980e15
CAMP-881: code cleanup
7671645
CAMP-881: bump CakePHP version to 2.10.22
ac28760
CAMP-881: add expected CakePHP class overrides
66f5e91
CAMP-881: dockerize to make running tests easier
b0f82b2
CAMP-881: update installation and testing docs
6866904
CAMP-881: bump docker php version to 7.1
7210723
CAMP-881: code cleanup
8190785
CAMP-881: code cleanup
cd0c3f9
CAMP-881: add coverage for parents related changes
e2413ab
CAMP-881: reorg changes
709af18
CAMP-881: add tests for CacheEnginesHelper
0b40dae
CAMP-881: code cleanup
149dae3
Merge pull request #11 from Traackr/CAMP-881-redis-sets-reorg
jec3 d2a94bd
CAMP-881: code cleanup
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 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,12 @@ | ||
FROM php:7.1-fpm-alpine | ||
RUN apk update && apk add build-base | ||
RUN apk add zlib-dev git zip libmcrypt-dev \ | ||
&& docker-php-ext-install zip \ | ||
&& docker-php-ext-install mcrypt \ | ||
&& docker-php-ext-enable mcrypt | ||
RUN curl -sS https://getcomposer.org/installer | php \ | ||
&& mv composer.phar /usr/local/bin/ \ | ||
&& ln -s /usr/local/bin/composer.phar /usr/local/bin/composer | ||
COPY . /app | ||
WORKDIR /app | ||
ENV PATH="~/.composer/vendor/bin:./vendor/bin:${PATH}" |
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.
Cakephp 2.x requires mcrypt. PHP 7.1 is the last version that includes mcrypt so to avoid having to pull it from PECL I'm using 7.1 instead of 7.2.