
脉脉【2026届校招】后端实习生
校招全职研发地点:北京状态:招聘
任职要求
职位要求 1、计算机相关专业本科及以上学历,有算法工程经验优先; 2、精通golang一门或多门语言的开发,熟悉多线程编程,熟悉常见的开源分布式中间件、缓存、消息队列等,熟悉Redis/MySQL等数据库的应用; 3、熟悉面向对象设计,有一定的系统架构设计能力; 4、热爱技术,对代码质量和开发规范有近乎苛刻的要求,善于沟通与团队协作; 5、有大型分布式、高并发、高负载、高可用性系统设计和稳定性经验优先;
工作职责
职位描述 1、负责公司后端相关的系统设计与后端开发,支撑算法工程的性能和稳定性; 2、协助参与信息流推荐系统的开发和优化工作,在项目中锻炼自己应对高并发高吞吐需求场景的能力; 3、在导师指导下,参与设计和开发高并发、高可用的后端系统,学习如何确保系统的性能、稳定性、可扩展性、可观测性; 4、关注业界先进技术动态,在公司的引导下研究分析业内主流产品技术实现,参与到当前系统架构设计的优化工作中;
包括英文材料
学历+
算法+
https://roadmap.sh/datastructures-and-algorithms
Step by step guide to learn Data Structures and Algorithms in 2025
https://www.hellointerview.com/learn/code
A visual guide to the most important patterns and approaches for the coding interview.
https://www.w3schools.com/dsa/
Go+
https://www.youtube.com/watch?v=8uiZC0l4Ajw
学习Golang的完整教程!从开始到结束不到一个小时,包括如何在Go中构建API的完整演示。没有多余的内容,只有你需要知道的知识。
多线程+
https://liaoxuefeng.com/books/java/threading/basic/index.html
和单线程相比,多线程编程的特点在于:多线程经常需要读写共享数据,并且需要同步。
https://www.youtube.com/watch?v=_uQgGS_VIXM&list=PLsc-VaxfZl4do3Etp_xQ0aQBoC-x5BIgJ
https://www.youtube.com/watch?v=IEEhzQoKtQU
https://www.youtube.com/watch?v=mTGdtC9f4EU&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4
https://www.youtube.com/watch?v=TPVH_coGAQs&list=PLk6CEY9XxSIAeK-EAh3hB4fgNvYkYmghp
https://www.youtube.com/watch?v=xPqnoB2hjjA
This video is an introduction to multithreading in modern C++.
https://www.youtube.com/watch?v=YKBwKy5PrpQ
Rust threading is easy to implement and improves the efficiency of your applications on multi-core systems!
中间件+
https://www.youtube.com/watch?v=1oWPUpMheGk
缓存+
https://hackernoon.com/the-system-design-cheat-sheet-cache
The cache is a layer that stores a subset of data, typically the most frequently accessed or essential information, in a location quicker to access than its primary storage location.
https://www.youtube.com/watch?v=bP4BeUjNkXc
Caching strategies, Distributed Caching, Eviction Policies, Write-Through Cache and Least Recently Used (LRU) cache are all important terms when it comes to designing an efficient system with a caching layer.
https://www.youtube.com/watch?v=dGAgxozNWFE
消息队列+
https://www.youtube.com/watch?v=xErwDaOc-Gs
Redis+
[英文] Developer Hub
https://redis.io/dev/
Get all the tutorials, learning paths, and more you need to start building—fast.
https://www.runoob.com/redis/redis-tutorial.html
REmote DIctionary Server(Redis) 是一个由 Salvatore Sanfilippo 写的 key-value 存储系统,是跨平台的非关系型数据库。
https://www.youtube.com/watch?v=jgpVdJB2sKQ
In this video I will be covering Redis in depth from how to install it, what commands you can use, all the way to how to use it in a real world project.
MySQL+
https://juejin.cn/post/7190306988939542585
这是一篇 MySQL 通关一篇过硬核经验学习路线,包括数据库相关知识,SQL语句的使用,数据库约束,设计等。
[英文] MySQL Tutorial
https://www.mysqltutorial.org/
your go-to resource for mastering MySQL in a fast, easy, and enjoyable way.
https://www.youtube.com/watch?v=5OdVJbNCSso
MySQL SQL tutorial for beginners
https://www.youtube.com/watch?v=7S_tz1z_5bA
This beginner-friendly course teaches you SQL from scratch.
面向对象+
https://liaoxuefeng.com/books/java/oop/index.html
面向对象编程,英文是Object-Oriented Programming,简称OOP。
https://liaoxuefeng.com/books/python/oop/index.html
面向对象编程——Object Oriented Programming,简称OOP,是一种程序设计思想。
https://www.youtube.com/watch?v=SiBw7os-_zI
Learn the basics of object-oriented programming all in one video.
系统设计+
https://roadmap.sh/system-design
Everything you need to know about designing large scale systems.
https://www.youtube.com/watch?v=F2FmTdLtb_4
This complete system design tutorial covers scalability, reliability, data handling, and high-level architecture with clear explanations, real-world examples, and practical strategies.
高并发+
https://www.baeldung.com/concurrency-principles-patterns
In this tutorial, we’ll discuss some of the design principles and patterns that have been established over time to build highly concurrent applications.
https://www.baeldung.com/java-concurrency
Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.
https://www.oreilly.com/library/view/concurrency-in-go/9781491941294/
You’ll understand how Go chooses to model concurrency, what issues arise from this model, and how you can compose primitives within this model to solve problems.
https://www.oreilly.com/library/view/modern-concurrency-in/9781098165406/
With this book, you'll explore the transformative world of Java 21's key feature: virtual threads.
https://www.youtube.com/watch?v=qyM8Pi1KiiM
https://www.youtube.com/watch?v=wEsPL50Uiyo
高负载+
https://dev.to/m0n0x41d/highload-saga-the-fundamentals-4kj4
In the modern big tech world, there are titans among mortal, tiny applications, and the common name for such titans is "Highload applications."
高可用+
https://redis.io/blog/high-availability-architecture/
A high available architecture is when there are a number of different components, modules, or services that work together to maintain optimal performance, irrespective of peak-time loads.
https://www.ibm.com/think/topics/high-availability
High availability (HA) is a term that refers to a system’s ability to be accessible and reliable close to 100% of the time.
相关职位

实习研发
后端研发工程师-工程方向 职位描述 1、负责公司算法工程相关的系统设计与后端开发,支撑算法工程的性能和稳定性; 2、协助参与信息流推荐系统的开发和优化工作,在项目中锻炼自己应对高并发高吞吐需求场景的能力; 3、在导师指导下,参与设计和开发高并发、高可用的后端系统,学习如何确保系统的性能、稳定性、可扩展性、可观测性; 4、关注业界先进技术动态,在公司的引导下研究分析业内主流产品技术实现,参与到当前系统架构设计的优化工作中;
更新于 2025-03-21

校招
1、进行大批量数据离线处理,完成用户、货品、交易等运营数据的ETL工作,维护相关的数据作业; 2、实时收集用户的点击、收藏、加购物车、购买等行为数据,服务用户画像、个性化推荐等应用; 3、负责数据平台的开发维护,承担数据产品的开发,保障管理系统的稳定。
更新于 2025-08-07
实习后端开发
1、参与小红书社区电商及本地交易、开放平台等场景的迭代和系统架构设计系统能力建设; 2、深入参与业务需求的分析,参与多个核心系统的建设,承担系统的设计开发维护工作,并持续优化改进; 3、参与讨论业务模型和服务定义等,识别当前架构中存在的问题,定义清晰的问题并推动架构演进,体系化的解决问题。
更新于 2025-08-02