12 April, 2019
Notes taken between: 8-12 April 2019
For debugging if you want to so see whats compiled look at php/example/var/cache/test/appTestDebugProjectContainer.xml
sometimes an issue could be resolved by simply removing the cache rm -rf app/cache/
https://docs.docker.com/engine/reference/run/#clean-up---rm If you’d like Docker to automatically clean up the container and remove the file system when the container exits, you can add the --rm flag. docker run -v $(pwd):/<your_app> --rm -it golang:1.12-alpine sh
ag also known as The Silver Searcher If your search query is an all small caps query, it does a case insensitive search. If it contains an uppercase letter is will be case sensitive.
ag <file>
js>
grep utilities has the -A option for lines after a match and a -B option for lines before a match.
you can use -C to show N lines before and after the match.
js>ag <file> -A4
ag ApiAuthenticator vendor
ll php/example
An approach to for microservices to subscribe to data between themsevles is via feeds. a multi master feed has the con of timing issue which can cause issues when services are replicating.
microservices need to also take into accounts the bounradires they are seperated by. eg. api boundaries if api driven.