├── .gitignore ├── README.md └── src ├── caching ├── answers │ ├── memcache_vs_memcached.md │ └── memcached_vs_redis.md └── list.md ├── devops └── list.md ├── docker ├── answers │ ├── docker_volumes.md │ └── env_vs_arg_in_dockerfile.md ├── images │ └── types-of-mounts-volume.png └── list.md ├── doctrine ├── answers │ ├── doctrine_events_list.md │ ├── dql_vs_dbal.md │ ├── what_is_an_entity.md │ └── what_is_an_entity_manager.md └── list.md ├── elasticsearch └── list.md ├── general_questions ├── answers │ ├── how_authentication_works.md │ └── http_streaming.md └── list.md ├── git ├── answers │ └── git_merge_vs_git_pull_vs_git_fetch.md └── list.md ├── highload └── list.md ├── microservices ├── answers │ └── popular_microservice_patterns_list.md └── list.md ├── mysql └── list.md ├── oop ├── answers │ └── list_of_design_patterns.md └── list.md ├── other ├── clean-code │ ├── list.md │ └── robert-martin-clean-code │ │ ├── chapters │ │ ├── chapter1.md │ │ ├── chapter10.md │ │ ├── chapter11.md │ │ ├── chapter12.md │ │ ├── chapter13.md │ │ ├── chapter17.md │ │ ├── chapter2.md │ │ ├── chapter3.md │ │ ├── chapter4.md │ │ ├── chapter5.md │ │ ├── chapter6.md │ │ ├── chapter7.md │ │ ├── chapter8.md │ │ └── chapter9.md │ │ └── list.md └── debugging │ └── list.md ├── php ├── answers │ ├── closure_vs_anonymous_function.md │ ├── data_types_in_php.md │ ├── generators.md │ ├── magic_constants.md │ ├── php_features │ │ ├── new_features_in_php80.md │ │ ├── new_features_in_php81.md │ │ ├── new_features_in_php82.md │ │ └── new_features_in_php83.md │ └── this_vs_self_vs_parent.md └── list.md ├── queueing └── list.md ├── redis ├── answers │ ├── basic_data_types.md │ └── complex_data_types.md └── list.md ├── symfony ├── answers │ ├── Design_patterns_examples_in_symfony_and_doctrine.md │ ├── images │ │ └── symfony_request_lifecycle.png │ ├── request_response_lifecycle.md │ └── what_is_a_compiler_pass.md └── list.md └── testing └── list.md /.gitignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/README.md -------------------------------------------------------------------------------- /src/caching/answers/memcache_vs_memcached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/caching/answers/memcache_vs_memcached.md -------------------------------------------------------------------------------- /src/caching/answers/memcached_vs_redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/caching/answers/memcached_vs_redis.md -------------------------------------------------------------------------------- /src/caching/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/caching/list.md -------------------------------------------------------------------------------- /src/devops/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/devops/list.md -------------------------------------------------------------------------------- /src/docker/answers/docker_volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/docker/answers/docker_volumes.md -------------------------------------------------------------------------------- /src/docker/answers/env_vs_arg_in_dockerfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/docker/answers/env_vs_arg_in_dockerfile.md -------------------------------------------------------------------------------- /src/docker/images/types-of-mounts-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/docker/images/types-of-mounts-volume.png -------------------------------------------------------------------------------- /src/docker/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/docker/list.md -------------------------------------------------------------------------------- /src/doctrine/answers/doctrine_events_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/doctrine/answers/doctrine_events_list.md -------------------------------------------------------------------------------- /src/doctrine/answers/dql_vs_dbal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/doctrine/answers/dql_vs_dbal.md -------------------------------------------------------------------------------- /src/doctrine/answers/what_is_an_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/doctrine/answers/what_is_an_entity.md -------------------------------------------------------------------------------- /src/doctrine/answers/what_is_an_entity_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/doctrine/answers/what_is_an_entity_manager.md -------------------------------------------------------------------------------- /src/doctrine/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/doctrine/list.md -------------------------------------------------------------------------------- /src/elasticsearch/list.md: -------------------------------------------------------------------------------- 1 | ## Elasticsearch 2 | 3 | - Main features 4 | - Analyzers -------------------------------------------------------------------------------- /src/general_questions/answers/how_authentication_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/general_questions/answers/how_authentication_works.md -------------------------------------------------------------------------------- /src/general_questions/answers/http_streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/general_questions/answers/http_streaming.md -------------------------------------------------------------------------------- /src/general_questions/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/general_questions/list.md -------------------------------------------------------------------------------- /src/git/answers/git_merge_vs_git_pull_vs_git_fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/git/answers/git_merge_vs_git_pull_vs_git_fetch.md -------------------------------------------------------------------------------- /src/git/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/git/list.md -------------------------------------------------------------------------------- /src/highload/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/highload/list.md -------------------------------------------------------------------------------- /src/microservices/answers/popular_microservice_patterns_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/microservices/answers/popular_microservice_patterns_list.md -------------------------------------------------------------------------------- /src/microservices/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/microservices/list.md -------------------------------------------------------------------------------- /src/mysql/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/mysql/list.md -------------------------------------------------------------------------------- /src/oop/answers/list_of_design_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/oop/answers/list_of_design_patterns.md -------------------------------------------------------------------------------- /src/oop/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/oop/list.md -------------------------------------------------------------------------------- /src/other/clean-code/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/list.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter1.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter10.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter11.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter12.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter13.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter17.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter2.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter3.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter4.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter5.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter6.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter7.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter8.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/chapters/chapter9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/chapters/chapter9.md -------------------------------------------------------------------------------- /src/other/clean-code/robert-martin-clean-code/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/clean-code/robert-martin-clean-code/list.md -------------------------------------------------------------------------------- /src/other/debugging/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/other/debugging/list.md -------------------------------------------------------------------------------- /src/php/answers/closure_vs_anonymous_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/closure_vs_anonymous_function.md -------------------------------------------------------------------------------- /src/php/answers/data_types_in_php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/data_types_in_php.md -------------------------------------------------------------------------------- /src/php/answers/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/generators.md -------------------------------------------------------------------------------- /src/php/answers/magic_constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/magic_constants.md -------------------------------------------------------------------------------- /src/php/answers/php_features/new_features_in_php80.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/php_features/new_features_in_php80.md -------------------------------------------------------------------------------- /src/php/answers/php_features/new_features_in_php81.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/php_features/new_features_in_php81.md -------------------------------------------------------------------------------- /src/php/answers/php_features/new_features_in_php82.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/php_features/new_features_in_php82.md -------------------------------------------------------------------------------- /src/php/answers/php_features/new_features_in_php83.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/php_features/new_features_in_php83.md -------------------------------------------------------------------------------- /src/php/answers/this_vs_self_vs_parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/answers/this_vs_self_vs_parent.md -------------------------------------------------------------------------------- /src/php/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/php/list.md -------------------------------------------------------------------------------- /src/queueing/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/queueing/list.md -------------------------------------------------------------------------------- /src/redis/answers/basic_data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/redis/answers/basic_data_types.md -------------------------------------------------------------------------------- /src/redis/answers/complex_data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/redis/answers/complex_data_types.md -------------------------------------------------------------------------------- /src/redis/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/redis/list.md -------------------------------------------------------------------------------- /src/symfony/answers/Design_patterns_examples_in_symfony_and_doctrine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/symfony/answers/Design_patterns_examples_in_symfony_and_doctrine.md -------------------------------------------------------------------------------- /src/symfony/answers/images/symfony_request_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/symfony/answers/images/symfony_request_lifecycle.png -------------------------------------------------------------------------------- /src/symfony/answers/request_response_lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/symfony/answers/request_response_lifecycle.md -------------------------------------------------------------------------------- /src/symfony/answers/what_is_a_compiler_pass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/symfony/answers/what_is_a_compiler_pass.md -------------------------------------------------------------------------------- /src/symfony/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/symfony/list.md -------------------------------------------------------------------------------- /src/testing/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaphire/interview_questions_and_answers/HEAD/src/testing/list.md --------------------------------------------------------------------------------