027——从GUI->Client->Server->driver实现对SR501的控制

news2024/11/26 16:59:48

目录

1、修改显示界面

2、 添加对SR501显示的处理和tcp消息的处理 

3、 在服务器程序中添加对SR501的处理

4、 编写驱动句柄

5、 修改底层驱动


1、修改显示界面

有个奇怪的问题这里的注释如果用''' '''就会报错不知道为啥,只能用#来注释

我把显示这里需要显示的器件的显示单独放到按键前了,都放下面大的output中显示太乱了。

2、 添加对SR501显示的处理和tcp消息的处理 

'''
fuction : 客户端程序
author  : 辛天宇
date    : 2024-4-13
-------------------------------
author     date      modify
辛天宇   2024-4-15   结合GUI和网络通信

'''
import show
import tcp
import tool
import socket
import global_var


def send_handle(window, client_socket, values):
    global_var.TX_BUF = values['txbuff'] 
    print(f"txbuff={global_var.TX_BUF}")
    # 清理input
    window['txbuff'].update(value='')
    data = global_var.TX_BUF
    client_socket.sendall(data.encode())
    # 接收服务器的响应
    data = client_socket.recv(512)
    # 将字节字符串转化为字符串
    global_var.RX_BUF = data.decode('utf-8')
    print(f"rx......{global_var.RX_BUF}") 

def quit_handel(client_socket):
    cmd='Q'
    client_socket.sendall(cmd.encode())
    tcp.disconnect_to_server(client_socket)

# 进行一次发送和接收
def send_cmd(client_socket):
    data = global_var.TX_BUF
    client_socket.sendall(data.encode())
    # 接收服务器的响应
    data = client_socket.recv(512)
    # 将字节字符串转化为字符串
    global_var.RX_BUF = data.decode('utf-8')

# 设置发送消息
def set_tx_buf(device, message): 
    if device == 'sr04':
        global_var.TX_BUF = '@002'
    if device == 'led':
        global_var.TX_BUF = '@000'+message
    elif device == 'sr501':
        global_var.TX_BUF = '@001'+message
    elif device == 'irda':
        global_var.TX_BUF = '@003'
    elif device == 'motor':
        global_var.TX_BUF = '@004'+message
    elif device == 'dht11':
        global_var.TX_BUF = '@005'+message
        print(f"dht11={global_var.TX_BUF}")
    elif device == 'ds18b20':
        global_var.TX_BUF = '@006'
    elif device == 'iic':
        global_var.TX_BUF = '@007'
    elif device == 'spi':
        global_var.TX_BUF = '@008'
    

# 处理数据
def cmd_handle(window):
    cmd = global_var.RX_BUF
    if len(cmd) < 4:
        print("cmd ERROR")
        return -1
    if '@' == cmd[0]:
        # 目前驱动设备数量只有两位数
        if cmd[1] == '0':
            # LED: @000+1位命令位+1位数据位
            if cmd[2] == '0' and cmd[3] == '0':
                if cmd[5] == '1':
                    print("LED Status change success")
                elif cmd[5] == '0':
                    print("LED Status change failure")
                else:
                    print("message ERROR")
            # SR501:@001+1位数据位
            elif cmd[2] == '0' and cmd[3] == '1':
                if cmd[4] == '1':
                    print("有人")
                    message='有人'
                    window['SR501_O'].update(message)
                elif cmd[4] == '0':
                    print("无人")
                    message='无人'
                    window['SR501_O'].update(message)
                else:
                    print("message ERROR")
            #SR04
            elif cmd[2] == '0' and cmd[3] == '2':
                print(cmd[4:])
            #irda
            elif cmd[2] == '0' and cmd[3] == '3':
                print(cmd[4:])
            #motor
            elif cmd[2] == '0' and cmd[3] == '4':
                print(cmd[4:])
            #dht11
            elif cmd[2] == '0' and cmd[3] == '5':
                print(cmd[4:])
                global_var.TEM=cmd[4]+cmd[5]
                global_var.HUM=cmd[6]+cmd[7]
            #ds18b20
            elif cmd[2] == '0' and cmd[3] == '6':
                print(cmd[4:])
            #iic
            elif cmd[2] == '0' and cmd[3] == '7':
                print(cmd[4:])
            #spi
            elif cmd[2] == '0' and cmd[3] == '8':
                print(cmd[4:])

# 处理事件
def event_handle(window, client_socket):
    led = 0
    # 事件循环  
    while True:  
        try:
            cmd_handle(window)
            event, values = window.read()
            if event == 'input':
                window['txbuff'].update(disabled=not values['input'])
            elif event == 'send':
                send_handle(window, client_socket, values)
            elif event == 'Clean':
                window['Output'].update(value='')
            elif event == 'dht11':
                set_tx_buf('dht11', '2525')
                send_cmd(client_socket)
                message = f"{global_var.TEM}°C   {global_var.HUM}%"
                window['Getvalue'].update(message)
            elif event == 'ds18b20':
                set_tx_buf('ds18b20')
                send_cmd(client_socket)
                message = f"{global_var.TEM}°C"
                window['Getvalue'].update(message)
            elif event == 'Quit': 
                quit_handel(client_socket) 
                print(f"See you.............")
                break
            elif event is None:
                print(f"xxxxxxxxxxxxxxxxxxxx")
                break
            elif event == 'LED':
                if led % 2 == 0:
                    set_tx_buf('led','p1')
                else:
                    set_tx_buf('led','p0')
                led+=1
                if led > 100:
                    led = 0
                send_cmd(client_socket)
            elif event == 'SR501':
                set_tx_buf('sr501','g')
                send_cmd(client_socket)
            # 处理其他事件...
        except Exception as e:
            window.close()
            print(f"An error occurred: {e}")
            return 0
    window.close()
    return 0  

def main():
    # 创建GUI对象
    window = show.show_window('DefaultNoMoreNagging')
    # 尝试连接到服务器  
    client_socket = tcp.connect_to_server()
    if client_socket is not None: 
        event_handle(window, client_socket)

if __name__ == '__main__':
    main()

3、 在服务器程序中添加对SR501的处理

4、 编写驱动句柄

/*
*author   : xintianyu
*function : Handle sr501 Settings
*date     : 2024-4-17
-----------------------
author date  modify

*/
int sr501_handle(int* data)
{
    char *device = "/dev/CEBSS_sr501";
    int ret;
	char buf[2];
	static int fd;
	int val;
	int timeout_ms = 5000;
	int	flags;

    /* 打开文件 */
	fd = open(device, O_RDWR);
	if (fd == -1)
	{
		printf("can not open file %s\n", device);
		return ERROR;
	}

	if (read(fd, &val, 1) > 0)
	{
		if (val  == 0x100)
		{
			data = 1;
			printf("get button: %#x ,有人\n", val);
		}
		else
		{
			data = 0;
			printf("get button: %#x ,无人\n", val);
		}
	}
	else
	{
		printf("get button: -1\n");
	    close(fd);
		return ERROR;
	}
	close(fd);
    return NOERROR;
}

编译一下报错

修改一下

 

/*
*author   : xintianyu
*function : Handle sr501 Settings
*date     : 2024-4-17
-----------------------
author date  modify

*/
int sr501_handle(int* data)
{
    char *device = "/dev/CEBSS_sr501";
    int ret = NOERROR;
	static int fd;
	int val;

    /* 打开文件 */
	fd = open(device, O_RDWR);
	if (fd == -1)
	{
		printf("can not open file %s\n", device);
		return ERROR;
	}

	if (read(fd, &val, 1) > 0)
	{
		if (val  == 0x100)
		{
			*data = 1;
			printf("get button: %#x ,有人\n", val);
		}
		else
		{
			*data = 0;
			printf("get button: %#x ,无人\n", val);
		}
	}
	else
	{
		printf("get button: -1\n");
	    ret = ERROR;
	}
	close(fd);
    return ret;
}

 

5、 修改底层驱动

韦东山老师的用中断实现的太浪费资源了,这个小东西完全没必要啊

#include <linux/module.h>  
#include <linux/fs.h>  
#include <linux/cdev.h>
#include <linux/init.h>
#include <linux/gpio.h>
#include <linux/device.h>
#include <linux/uaccess.h>
#include <linux/slab.h>  
  
#define DEVICE_NAME "CEBSS_sr501"
#define CLASS_NAME  "sr501_gpio_pin"  
#define YOUR_GPIO_NUMBER 115
  
struct gpio_pin_dev {  
    struct cdev cdev;  
    unsigned int gpio;  
};  
  
static dev_t first_dev;  
static struct class *gpio_pin_class;
static struct gpio_pin_dev *dev;
  
static int gpio_pin_open(struct inode *inode, struct file *file)  
{  
    struct gpio_pin_dev *dev = container_of(inode->i_cdev, struct gpio_pin_dev, cdev);  
    int ret;  
  
    ret = gpio_request(dev->gpio, DEVICE_NAME);  
    if (ret) {  
        printk(KERN_ERR "%s: gpio_request failed\n", DEVICE_NAME);  
        return ret;  
    }  
  
    ret = gpio_direction_input(dev->gpio);  
    if (ret) {  
        printk(KERN_ERR "%s: gpio_direction_input failed\n", DEVICE_NAME);  
        gpio_free(dev->gpio);  
        return ret;  
    }  
  
    file->private_data = dev;  
    return 0;
}  
  
static int gpio_pin_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)  
{  
    dev = file->private_data;  
    int value;  
  
    value = gpio_get_value(dev->gpio);  
    if (copy_to_user(buf, &value, sizeof(value))) {  
        printk(KERN_ERR "%s: copy_to_user failed\n", DEVICE_NAME);  
        return -EFAULT;  
    }  
  
    return sizeof(value);   
}  
  
static int gpio_pin_release(struct inode *inode, struct file *file)  
{  
    struct gpio_pin_dev *dev = file->private_data;  
  
    gpio_free(dev->gpio);  
    return 0;  
}  
  
static const struct file_operations gpio_pin_fops = {  
    .owner = THIS_MODULE,  
    .open = gpio_pin_open,  
    .read = gpio_pin_read,  
    .release = gpio_pin_release,  
    // ... 可以添加其他操作 ...  
};  
  
static int __init gpio_pin_init(void)  
{  
    int ret;
    // 分配设备号  
    ret = alloc_chrdev_region(&first_dev, 0, 1, DEVICE_NAME);  
    if (ret < 0) {  
        printk(KERN_ERR "%s: alloc_chrdev_region failed\n", DEVICE_NAME);  
        return ret;  
    }  
  
    // 初始化设备结构体  
    dev = kzalloc(sizeof(struct gpio_pin_dev), GFP_KERNEL);  
    if (!dev) {  
        printk(KERN_ERR "%s: kzalloc failed\n", DEVICE_NAME);  
        unregister_chrdev_region(first_dev, 1);  
        return -ENOMEM;  
    }  
  
    // 设置GPIO引脚编号  
    dev->gpio = YOUR_GPIO_NUMBER;  
    dev->cdev.owner = THIS_MODULE;  
    dev->cdev.ops = &gpio_pin_fops;  
  
    // 注册字符设备  
    cdev_init(&dev->cdev, &gpio_pin_fops);
  
    ret = cdev_add(&dev->cdev, first_dev, 1);  
    if (ret) {  
        printk(KERN_ERR "%s: cdev_add failed\n", DEVICE_NAME);  
        kfree(dev);  
        unregister_chrdev_region(first_dev, 1);  
        return ret;  
    }  
  
    // 创建设备类  
    gpio_pin_class = class_create(THIS_MODULE, CLASS_NAME);  
    if (IS_ERR(gpio_pin_class)) {  
        printk(KERN_ERR "%s: class_create failed\n", DEVICE_NAME);  
        cdev_del(&dev->cdev);  
        kfree(dev);  
        unregister_chrdev_region(first_dev, 1);  
        return PTR_ERR(gpio_pin_class);  
    }  
  
    // 创建设备节点  
    device_create(gpio_pin_class, NULL, first_dev, NULL, DEVICE_NAME);  
  
    printk(KERN_INFO "%s: Device created with major %d and minor %d\n",  
           DEVICE_NAME, MAJOR(first_dev), MINOR(first_dev));  
  
    return 0;  
}
  
static void __exit gpio_pin_exit(void)  
{  
    dev_t devno = MKDEV(MAJOR(first_dev), 0);
    // 删除设备节点  
    device_destroy(gpio_pin_class, devno);  
  
    // 注销字符设备  
    cdev_del(&dev->cdev);  
  
    // 销毁设备类  
    class_destroy(gpio_pin_class);  
  
    // 释放设备号  
    unregister_chrdev_region(devno, 1);  
  
    // 释放设备结构体内存  
    kfree(dev);  
  
    printk(KERN_INFO "gpio_pin_exit: Module unloaded\n");  
}  
  
module_init(gpio_pin_init);  
module_exit(gpio_pin_exit);  
  
MODULE_LICENSE("GPL");

出现了意外貌似把板子烧了用这个器件现在一直拿不到消息了。

#include <linux/module.h>
#include <linux/poll.h>

#include <linux/fs.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
#include <linux/kernel.h>
#include <linux/major.h>
#include <linux/mutex.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/stat.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/tty.h>
#include <linux/kmod.h>
#include <linux/gfp.h>
#include <linux/gpio/consumer.h>
#include <linux/platform_device.h>
#include <linux/of_gpio.h>
#include <linux/of_irq.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/slab.h>
#include <linux/fcntl.h>
#include <linux/timer.h>

struct gpio_desc{
	int gpio;
	int irq;
    char *name;
    int key;
	struct timer_list key_timer;
} ;

static struct gpio_desc gpios[2] = {
    {115, 0, "sr501", },
};

/* 主设备号                                                                 */
static int major = 0;
static struct class *gpio_class;

/* 环形缓冲区 */
#define BUF_LEN 128
static int g_keys[BUF_LEN];
static int r, w;

struct fasync_struct *button_fasync;

#define NEXT_POS(x) ((x+1) % BUF_LEN)

static int is_key_buf_empty(void)
{
	return (r == w);
}

static int is_key_buf_full(void)
{
	return (r == NEXT_POS(w));
}

static void put_key(int key)
{
	if (!is_key_buf_full())
	{
		g_keys[w] = key;
		w = NEXT_POS(w);
	}
}

static int get_key(void)
{
	int key = 0;
	if (!is_key_buf_empty())
	{
		key = g_keys[r];
		r = NEXT_POS(r);
	}
	return key;
}


static DECLARE_WAIT_QUEUE_HEAD(gpio_wait);


/* 实现对应的open/read/write等函数,填入file_operations结构体                   */
static ssize_t gpio_drv_read (struct file *file, char __user *buf, size_t size, loff_t *offset)
{
	//printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
	int err;
	int key;

	if (is_key_buf_empty() && (file->f_flags & O_NONBLOCK))
		return -EAGAIN;
	
	wait_event_interruptible(gpio_wait, !is_key_buf_empty());
	key = get_key();
	err = copy_to_user(buf, &key, 4);
	
	return 4;
}


static unsigned int gpio_drv_poll(struct file *fp, poll_table * wait)
{
	//printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
	poll_wait(fp, &gpio_wait, wait);
	return is_key_buf_empty() ? 0 : POLLIN | POLLRDNORM;
}

static int gpio_drv_fasync(int fd, struct file *file, int on)
{
	if (fasync_helper(fd, file, on, &button_fasync) >= 0)
		return 0;
	else
		return -EIO;
}


/* 定义自己的file_operations结构体                                              */
static struct file_operations gpio_key_drv = {
	.owner	 = THIS_MODULE,
	.read    = gpio_drv_read,
	.poll    = gpio_drv_poll,
	.fasync  = gpio_drv_fasync,
};


static irqreturn_t gpio_key_isr(int irq, void *dev_id)
{
	struct gpio_desc *gpio_desc = dev_id;
	int val;
	int key;

	printk("gpio_key_isr key %d irq happened\n", gpio_desc->gpio);

	val = gpio_get_value(gpio_desc->gpio);

	//printk("key_timer_expire key %d %d\n", gpio_desc->gpio, val);
	key = (gpio_desc->key) | (val<<8);
	put_key(key);
	wake_up_interruptible(&gpio_wait);
	kill_fasync(&button_fasync, SIGIO, POLL_IN);

	return IRQ_HANDLED;
}


/* 在入口函数 */
static int __init gpio_drv_init(void)
{
    int err;
    int i;
    int count = sizeof(gpios)/sizeof(gpios[0]);
    
	printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
	
	for (i = 0; i < count; i++)
	{		
		gpios[i].irq  = gpio_to_irq(gpios[i].gpio);

		err = request_irq(gpios[i].irq, gpio_key_isr, IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, gpios[i].name, &gpios[i]);
	}

	/* 注册file_operations 	*/
	major = register_chrdev(0, "100ask_gpio_key", &gpio_key_drv);  /* /dev/gpio_desc */

	gpio_class = class_create(THIS_MODULE, "100ask_gpio_key_class");
	if (IS_ERR(gpio_class)) {
		printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
		unregister_chrdev(major, "100ask_gpio_key");
		return PTR_ERR(gpio_class);
	}

	device_create(gpio_class, NULL, MKDEV(major, 0), NULL, "sr501"); /* /dev/sr501 */
	
	return err;
}

/* 有入口函数就应该有出口函数:卸载驱动程序时,就会去调用这个出口函数
 */
static void __exit gpio_drv_exit(void)
{
    int i;
    int count = sizeof(gpios)/sizeof(gpios[0]);
    
	printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);

	device_destroy(gpio_class, MKDEV(major, 0));
	class_destroy(gpio_class);
	unregister_chrdev(major, "100ask_gpio_key");

	for (i = 0; i < count; i++)
	{
		free_irq(gpios[i].irq, &gpios[i]);
	}
}


/* 7. 其他完善:提供设备信息,自动创建设备节点                                     */

module_init(gpio_drv_init);
module_exit(gpio_drv_exit);

MODULE_LICENSE("GPL");

啊破东西到底怎么配置才能精准啊,不是永远测不到人就是哪里都是人。

彻底疯狂了

还是导线好使

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1604274.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

宝塔要注意的问题

数据库创建访问权限要全部人 反向代理1 打包dist,并不会有反向代理&#xff0c;所以宝塔里面要配置 反向代理2 这种去掉/api为/&#xff0c;上面的并没有去掉 rewrite ^/api/(.*)$ /$1 break;

mysql数据库表的数据显示到前端tableView

首先我们在ui视图设计中引入TableView, 定义一个model QSqlQueryModel *modelnew QSqlQueryModel(ui->tableView);model->setQuery(query);//将查询结果绑定到模型上ui->tableView->setModel(model); 将tableView内容设置成model然后就可以出现数据库的数据。示…

企业网站制作如何被百度收录

1、网站在百度中的整体评分 说俗点就是网站的权重&#xff0c;在优化过程中我们会见到很多网站出现秒收的情况&#xff0c;发布的文章几分钟就可以收录&#xff0c;这个通过SITE语法都可以去查询&#xff0c;那么这跟自己的网站权重以及内容更新习惯是有非常重要的关联。 我们…

Python-Qt上位机设计

1.下载designer软件 2.自己设计一个界面 3.在指定部件加入点击响应命令函数名 鼠标点击目标部件拖出信号线 4.保存生成.ui文件&#xff0c;用pycharm打开 5.生成.py文件 6.新建一个功能文件 上图中class MainWindow的具体代码不予展示。 7.生成exe文件 将写好的py文件保存&a…

产品推荐 | 基于Anlogic系列EG4S20 FPGA开发板

1、产品概述 国产FPGA是最近几年起来的产品。ANLOGIC 是国产FPGA组织一成员&#xff0c;ANLOGIC芯片具有性价比高特点。高云FPGA&#xff0c;很多用户都用在LED&#xff0c;电机控制&#xff0c;PLC设备上&#xff0c;接口扩展。在国产化平台&#xff0c;Altera &#xff0c;L…

Solaris安装Oracle RAC配置手册

一. Oracle RAC安装前的系统准备工作 检查安装包 ​pkginfo –i SUNWarc SUNWbtool SUNWhea SUNWlibC SUNWlibm SUNWlibms SUNWsprotSUNWtoo pkg install SUNWarc SUNWbtool SUNWhea SUNWlibC SUNWlibm SUNWlibms SUNWsprotSUNWtoo 1.1 创建系统用户和组(两节点都要执行 ro…

Python相关性分析

分析连续变量之间线性相关程度的强弱&#xff0c;并用适当的统计指标表示出来的过程称为相关分析。 可以直接绘制散点图&#xff0c;或者绘制散点图矩阵&#xff0c;或者计算相关系数来进行相关分析。 相关系数的计算如下所示&#xff1a; 示例数据&#xff1a; 计算百合酱蒸…

本地启用并操作Redis

本篇文章将向各位讲解redis的基础用法&#xff0c;废话不多说我们直接开始吧&#xff01; 首先需要下载redis到你本地&#xff0c;我这儿是下载到以下文件夹中&#xff1a; 双击redis-server.exe文件运行redis&#xff1a; 然后我们另外启用一个命令窗口&#xff08;需要进入你…

JDK11安装教程

文章目录 1、安装2、配置环境变量 1、安装 双击安装包&#xff0c;点击下一步 更改安装目录&#xff0c;点击下一步 等待安装完成 安装完成 2、配置环境变量 此电脑右键属性 -> 高级系统设置 -> 环境变量 -> 系统变量 -> 新建 变量名&#xff1a;JAVA_HOME变量…

发布!DolphinDB 白皮书正式上线官网!

对广大数据库用户而言&#xff0c;白皮书是极具参考价值的使用指南和学习手册。白皮书不但能深入剖析数据库的基础概念与架构&#xff0c;协助用户了解数据库的工作原理和应用技巧&#xff0c;更提供了丰富的实践案例&#xff0c;帮助用户从中汲取经验&#xff0c;避免在实际应…

Java 实际项目开发中最少必要知识汇总

一、面向过程和面向对象 程序设计语言分为面向过程和面向对象 对于面向过程&#xff0c;强调的是过程&#xff0c;关心的是我去做 对于面向对象&#xff0c;强调的是对象&#xff08;万物皆对象&#xff09;&#xff0c;更关心的是我该让谁去做&#xff0c;这里的谁指的就是对象…

AutoCoder 副作用,秒变命令行版Siri,再也不用复制黏贴命来管理大模型了

AutoCoder 可以通过你指定的文档&#xff0c;以及自动到搜索引擎进行搜索来获取信息&#xff0c;从而更好的帮你生成代码&#xff0c;但我们不满足&#xff0c;我们还希望能够对用户本地的文档进行索引&#xff0c;从而自动获取一些信息&#xff0c;帮助你本地的项目更好的迭代…

如何进行数据库的迁移与同步——【DBA 从入门到实践】第四期

在日常的数据库运维工作中&#xff0c;我们时常会面临数据库替换、机房搬迁、业务测试以及数据库升级等任务&#xff0c;这些任务都需要对数据进行迁移和同步操作。【DBA 从入门到实践】第4期&#xff0c;将引导大家深入了解数据库迁移的流程&#xff0c;并探讨在迁移过程中可用…

设计模式胡咧咧之策略工厂实现导入导出

策略模式&#xff08;Strategy Pattern&#xff09; 定义&#xff1a; 定义了一组算法&#xff0c;将每个算法都封装起来&#xff0c;并且使它们之间可以互换。 本质: 分离算法&#xff0c;选择实现 应用场景 何时使用 一个系统有许多类&#xff0c;而区分他们的只是他们直接…

Python与数据库交互的最佳实践

Python作为一种强大且易于学习的编程语言&#xff0c;在数据处理和应用程序开发方面具有广泛的应用。在构建涉及数据存储和检索的应用程序时&#xff0c;Python与数据库的交互成为关键的一环。本文将深入探讨Python与数据库交互的最佳实践&#xff0c;帮助读者更好地理解和应用…

软考 系统架构设计师系列知识点之大数据设计理论与实践(10)

接前一篇文章&#xff1a;软考 系统架构设计师系列知识点之大数据设计理论与实践&#xff08;9&#xff09; 所属章节&#xff1a; 第19章. 大数据架构设计理论与实践 第3节 Lambda架构 19.3.5 Lambda架构优缺点 1. 优点 &#xff08;1&#xff09;容错性好 Lambda架构为大数…

你信不信,五分钟快速学习Nginx

Nginx是什么&#xff1f; Nginx 是一个高性能的HTTP和反向代理服务器。它是由俄罗斯程序员Igor Sysoev开发的&#xff0c;最初是为了解决俄罗斯大型的门户网站的高流量问题。 说到反向代理&#xff0c;那么有没有正向代理呢&#xff1f; 正向代理&#xff1a;客户端非常明确要…

二叉树的中序遍历 - LeetCode 热题 36

大家好&#xff01;我是曾续缘&#x1f603; 今天是《LeetCode 热题 100》系列 发车第 36 天 二叉树第 1 题 ❤️点赞 &#x1f44d; 收藏 ⭐再看&#xff0c;养成习惯 二叉树的中序遍历 给定一个二叉树的根节点 root &#xff0c;返回 它的 中序 遍历 。 示例 1&#xff1a; 输…

考研数学|《1800》《660》《880》如何选择和搭配?(附资料分享)

直接说结论&#xff1a;基础不好先做1800、强化之前660&#xff0c;强化可选880/1000题。 首先&#xff0c;传统习题册存在的一个问题是题量较大&#xff0c;但难度波动较大。《汤家凤1800》和《张宇1000》题量庞大&#xff0c;但有些题目难度不够平衡&#xff0c;有些过于简单…

图神经网络推荐系统

链接&#xff08;何向南教授&#xff09;&#xff1a;https://hexiangnan.github.io/papers/wsdm22-tutorial-proposal.pdf 摘要&#xff1a; 近年来&#xff0c;图神经网络(graph neural network, GNN)以其强大的结构化数据处理能力和对高阶信息的挖掘能力&#xff0c;成为许…