Library Search
结果页moka
在 元器件 / 技术栈 / 知识库 中找到 13 个匹配结果。
技术栈
技术栈
8 个 C# ```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Alpine.js Demo</title>
<style>
body { font-family: system-ui; max-width: 600px; margin: 50px auto; background: #… 2% Apache Kafka ## Apache Kafka
Apache Kafka 是由 LinkedIn 开发、现由 Apache 软件基金会维护的**分布式事件流平台**。它不仅能做消息队列,更是一种分布式的提交日志(Commit Log)。
**核心价值**:高吞吐、低延迟、持久化、水平扩展。适合万亿级消息场景,如日志聚合、流处理、事件溯源。
**关键特性**:
- 分区(Partition)+ 副本(Repl… 2% Matplotlib 参考文献:
[
{
"type": "web",
"year": 2024,
"title": "Matplotlib 官方文档",
"authors": [
"Matplotlib Development Team"
]
},
{
"type": "book",
"year": 2021,
"title":… 2% NumPy 参考文献:
[
{
"type": "book",
"year": 2022,
"title": "Python for Data Analysis (3rd Edition)",
"authors": [
"Wes McKinney"
]
},
{
"type": "web",
"year": 2024,
"… 2% React Native <FlatList
data={todos}
keyExtractor={(item) => item.id}
renderItem={renderItem}
ListEmptyComponent={
<Text style={styles.empty}>暂无任务,添加一个吧 ✨</Text>
}… 2% Fiber 参考文献:
[
{
"url": "https://docs.gofiber.io/",
"type": "web",
"year": 2024,
"title": "Fiber 官方文档",
"authors": [
"Fiber Team"
]
},
{
"url": "https://github.com/val… 2% Verilog / SystemVerilog 参考文献:
[
{
"url": "https://ieeexplore.ieee.org/document/8299595",
"type": "web",
"year": 2017,
"title": "IEEE Standard for SystemVerilog (1800-2017)",
"authors": [
"IEEE"… 1% CakePHP 参考文献:
[
{
"url": "https://book.cakephp.org",
"type": "web",
"year": 2024,
"title": "CakePHP Cookbook",
"authors": [
"CakePHP Team"
]
},
{
"url": "https://github… 1%
知识库
知识库
5 个 Todo List 应用——核心组件与 Hooks <FlatList
data={todos}
keyExtractor={(item) => item.id}
renderItem={renderItem}
ListEmptyComponent={
<Text style={styles.empty}>暂无任务,添加一个吧 ✨</Text>
}… 2% 入门教程 - 高吞吐流处理核心概念 # Kafka 入门教程:高吞吐流处理核心概念
## 1. Kafka 与其他 MQ 的区别
| 维度 | RabbitMQ | Kafka |
|------|----------|-------|
| 定位 | 消息代理(Message Broker) | 事件流平台(Event Streaming) |
| 吞吐量 | 万级/秒 | 百万级/秒 |
| 消息保留 | 消费后删除 | 基于… 1% CSV 文件批量导入 @Bean
public Step importStep() {
return new StepBuilder("importStep", jobRepository)
.<Customer, Customer>chunk(100, transactionManager)
.reader(reader)… 1% AS608 光学指纹传感器 — 代码例程 (STM32 + Arduino) uint8_t recvPacket(uint8_t *confirm) {
unsigned long t = millis();
while (as608Serial.available() < 12) {
if (millis() - t > 1000) return 0;
}
uint8_t b;
while (as608S… 1% 火焰传感器(4针) 双模式检测与中断触发代码例程 void loop() {
int doState = digitalRead(FLAME_DO_PIN);
Serial.print("DO状态: ");
if (doState == LOW) {
Serial.println("LOW ← 已触发(火焰/红外源太强或阈值太低)");
} else {
Serial.printl… 1%