search
HomeBackend DevelopmentPHP TutorialRecord the key points of mid-to-senior PHP interviews during the epidemic

Due to the epidemic, it is a video interview. Party A’s lineup includes one HR supervisor and one product manager. The person directly responsible for this interview is Technical Director A. The other two seem to be heads of different departments (B and C) in the same position ( Well, they are all 35).

Without further ado, let’s get straight to the topic. (Some people want to use colons to separate them, but the colon key and tab on the keyboard seem to be broken)

At the beginning, hr introduced the members and positions involved in the interview, and then asked about his questions. The product manager asked Explain the reasons for Ben’s resignation and the issues he wants to know.

Then the real drama begins.

Director A: Seeing that you are very proficient in MySQL, please tell me about the isolation level of MySQL. .

Me: The isolation levels of MySQL transactions from first to highest are read uncommitted, read committed, repeatable read, and serialized. The default isolation level of MySQL is repeatable read, and transaction concurrency may cause The problem is dirty reading, non-repeatable reading, and phantom reading, and then the operations and solutions that cause these situations are explained respectively.

Director A: What is your strategy for modifying the isolation level in actual scenarios.

Me: .... (The ellipses here mean that I was making up some nonsense. In fact, I was a bit confused, because I have only processed tens of millions of traffic data, but it is not high concurrency, so it does not involve modifying isolation. sector, or the depth of thinking is not enough)

Director A: What are the indexes of innodb and how are they implemented.

Me: The primary key is a unique common joint index, which can be implemented by B-tree, B-tree, and hash.

Director A: What are the differences between these implementations? What strategies do you use to choose them when designing indexes?

Me: B-tree and B-tree are different in the data on leaf nodes and the depth of the tree. For the same retrieval, B-tree requires one more IO than B-tree. Choose different index algorithms according to the actual business scenario. If it is more reading and less writing, I will choose B-tree (actually I don’t know, because I forgot)

Director A: Classification and functions of MySQL locks , you use scenarios in actual work.

Me: (I was a little nervous at this time, because the previous interviews were from shallow to deep)... Then I briefly stated my understanding, but in fact the answer was not satisfactory. Because B and C also insert other questions.

Director B: Are you familiar with distribution? How to implement distributed locks? Have you ever learned about etcd?

Me: You can use redis's setnx combined with the expiration time to implement this, because I have implemented this in my business before, etcd, and I have never understood this (I don't have this concept in my mind). Also,, (interrupted )

Director C: Time is limited, let’s continue with other questions. Let’s see if you have done PHP optimization and how to use opcahche.

Me: (thought for a moment), opcode parsing and optimization.

Director C: Where is the opcode

Me: I have no impression of this, (I really have no impression of this) Because based on the business scenario before, I have made a qualitative improvement in the project from the front end, CDN, server reverse proxy, database cache, and program logic code optimization, but it is the only thing that I don’t have contact with opchache and opcode. , mistake)

Director C: Briefly describe the process of url, just focus on the key points

My browser inputs the url and parses it into an IP, and then sends the request to the web server. If it is nginx It will be sent to PHP-FPM through cgi, and then wait for the PHP script to parse, process logic, and respond to data.

Director C: What is cgi and what is it used for?

Me: cgi is a protocol, which is a protocol for languages ​​like PHP to communicate with web servers.

Director B: What is the architectural model of PHP-FPM and how have you optimized it?

Me: It is a master (main)-worker (worker process) architecture model. It is the work process that actually processes requests. The master mainly manages and recycles child processes. If optimized, it has been changed before. I will briefly describe the configuration of its number of processes: Due to the static mode configured before, the default number of processes was 200. Later, when there was a certain concurrency, I should change it to the "third" configuration mode and configure the specified number. There is a minimum and maximum value for the number of processes (the maximum value is actually forgotten here, I just think there must be no limit, after all, hardware resources are the ceiling), and then dynamically increase the number of processes based on the actual number of requests.

Director B: Are there any other optimizations?

Me: (I was silent for a while. In fact, I made other changes during the revision, but I really forgot about it. I felt that this interview was stretched. ), I did do other optimizations at that time, but I can’t remember them.

Director B: Tell me about the rabbitmq you use and your understanding of it.

Me: (Briefly describing the architecture of rabbitmq) and my usage scenarios and business.

Director B: Tell me about the topic mode you use

Me: (I briefly described the topic usage process, which is considered a pass).

Director A: Let’s talk about redis sharding.

Me: Sharding is the process of dividing keys into multiple redis instances, which uses the memory and CPU processing power of multiple computers to improve,,,,

Director A : How to implement the ranking list

Me: You can use the ordered set of redis, because it has a score,,,

Director A: Use that function to get the value

Me: (Recalling it, I really can’t remember it) I forgot this, what kind of member function.

Director A: Let’s talk about AOP, have you used it?

Me: AOP aspect programming is to use dynamic proxy and other technologies to achieve unified maintenance of functional modules, a bit like laravel’s facade (I don’t know) At the end of the day, if you think about it, it will fail).

Director A: Let’s talk about the characteristics of hyperf

Me: Based on swoole, a plug-in high-performance and highly flexible coroutine framework. It is containerized with dependency injection, aop mode, and annotations. Mode, event mode,,,

Director A: Let’s talk about the coroutine pool and coroutine state management

Me: (I didn’t actually answer it here. In fact, after thinking about it, I can still Answer part, at least coroutine state management can be answered)

Director A: If you know go, this question is very simple

Director A: Let’s talk about laravel

me : (This is my strong point, so I won’t briefly describe it one by one)

Director B: Let’s talk about Linux and shell scripts

Me: (Brief introduction to Linux and common commands and vi), shell expressions and variable definitions and uses are different from PHP language.

Director C: I see you use map reduce to batch data, tell me about it

I use monogo’s map redcue to process data,,, (interrupted)

Director C: I thought I would use hadoop’s map reduce

Director A: Tell me about your plans for the future

Me: …

The above is my time The video interview was 100% restored. Later, when I thought about it carefully, I found that many of them had solutions. But why was the effect of this interview so inconsistent? The rhythm. Yes, it was the rhythm. It was the interviewer who gave me "deep" stuff, which disrupted my rhythm.

Related recommendations: "PHP Video Tutorial" " PHP Interview Questions Summary (Collection) "

The above is the detailed content of Record the key points of mid-to-senior PHP interviews during the epidemic. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:learnku. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),