<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_43835659的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_43835659</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_43835659]]></copyright><item><title><![CDATA[QR分解——复数域的Givens旋转]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/139119041</link><guid>https://blog.csdn.net/weixin_43835659/article/details/139119041</guid><author>weixin_43835659</author><pubDate>Wed, 22 May 2024 14:38:04 +0800</pubDate><description><![CDATA[简单以matlab代码为例子的核心代码如下:（x为矩阵X的某一列向量）针对复矩阵X的第i行和第j行做Givens旋转。使得第i行变为一个实数：yi=sqrt(|xi|第j行变为0 ：yj=0,其他行不变：yk=xk。]]></description><category></category></item><item><title><![CDATA[信号——IQ数据介绍]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/125000313</link><guid>https://blog.csdn.net/weixin_43835659/article/details/125000313</guid><author>weixin_43835659</author><pubDate>Fri, 27 May 2022 11:10:57 +0800</pubDate><description><![CDATA[IQ数据介绍
推荐：https://blog.csdn.net/Rong_Toa/article/details/109031041

]]></description><category></category></item><item><title><![CDATA[问题记录——celery的beat报错：UnpicklingError]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/105440199</link><guid>https://blog.csdn.net/weixin_43835659/article/details/105440199</guid><author>weixin_43835659</author><pubDate>Fri, 10 Apr 2020 19:46:04 +0800</pubDate><description><![CDATA[问题记录——celery的beat报错：UnpicklingError
在启动定时器任务的时候，celery-beat启动不起来了，报错 :
UnpicklingError: pickle data was truncated
由于没有修改过代码，也没有变更过服务器，服务器资源都是正常使用状态。但多次启动celery命令后发现：偶尔一两次跑定时任务虽然仍旧报错，但可以执行一两次定时任务后又表现异常...]]></description><category></category></item><item><title><![CDATA[Linux——安装FTP]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/105440013</link><guid>https://blog.csdn.net/weixin_43835659/article/details/105440013</guid><author>weixin_43835659</author><pubDate>Fri, 10 Apr 2020 19:10:51 +0800</pubDate><description><![CDATA[Linux——安装FTP
1、yum安装ftp
yum install vsftpd -y

2、修改配置文件
vi /etc/vsftpd/vsftpd.conf
# 关闭匿名访问。 将anonymous_enable参数将值设置为NO

3、添加用户
#/usr/local/ftptest 为用户的主目录  ftpuser1为用户名
mkdir /usr/local/ftptest
usera...]]></description><category></category></item><item><title><![CDATA[Linux——安装Redis5.0]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/104482061</link><guid>https://blog.csdn.net/weixin_43835659/article/details/104482061</guid><author>weixin_43835659</author><pubDate>Mon, 24 Feb 2020 18:03:26 +0800</pubDate><description><![CDATA[Linux——安装Redis5.0
系统：Linux 64位 CentOS7.5
1、安装解压redis并重命名
cd /usr/local
wget http://download.redis.io/releases/redis-5.0.3.tar.gz
tar -zxvf redis-5.0.3.tar.gz
mv redis-5.0.3 redis

2、安装gcc依赖
yum instal...]]></description><category></category></item><item><title><![CDATA[Linux——安装MySQL5.7]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/104384712</link><guid>https://blog.csdn.net/weixin_43835659/article/details/104384712</guid><author>weixin_43835659</author><pubDate>Tue, 18 Feb 2020 23:21:29 +0800</pubDate><description><![CDATA[Linux——安装MySQL5.7
系统：Linux 64位 CentOS7.5
1、下载tar包，这里使用wget从官网下载
wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz

2、将mysql安装到/usr/local/mysql下
# 解压
tar -xv...]]></description><category></category></item><item><title><![CDATA[Java——SpringCloud服务治理与负载均衡（二）]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/104001557</link><guid>https://blog.csdn.net/weixin_43835659/article/details/104001557</guid><author>weixin_43835659</author><pubDate>Thu, 16 Jan 2020 11:57:30 +0800</pubDate><description><![CDATA[服务治理通过抽象将服务消费者和服务提供者进行隔离。
基于Cloud的服务治理有以下优点

更高的可用性：服务消费者只需要知道服务名称就可以调用相应的服务，而不需要具体的物理地址。当服务实例不可用或者新上线时，治理服务器能及时的调用转发等。
负载均衡：可以将所有请求动态地分布到其所管理的所有服务实例中进行。
提升应用的弹性：治理客户端会定时缓存服务实例信息于本地，当治理服务器不可用时，服务消费者可读...]]></description><category></category></item><item><title><![CDATA[Java——SpringCloud初识（一）]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103985579</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103985579</guid><author>weixin_43835659</author><pubDate>Wed, 15 Jan 2020 17:31:06 +0800</pubDate><description><![CDATA[基于一个微服务架构的应用，所包含的微服务动辄十几甚至上百，对于每个微服务都有几个或者几十个实例在运行（实例不停上线和下线），且分布在众多服务器上。而如何让这些微服务整体协作起来，形成一个和谐有效强健的应用，不仅仅是编写代码，在构建应用时，除了代码外，还需要一些基础设施、运维管理的支持等，通过这些基础设施和运维管理，可以对多构建的微服务实现统一管理和运维监控。
对于微服务架构业界也有一些成功的模式和...]]></description><category></category></item><item><title><![CDATA[Java——SpringBoot常用总结（一）]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103974915</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103974915</guid><author>weixin_43835659</author><pubDate>Tue, 14 Jan 2020 17:24:25 +0800</pubDate><description><![CDATA[常用启动器

spring-boot-starter-web    Web应用开发，依赖了spring-boot-starter-tomcat
spring-boot-starter-logging    日志开发
spring-boot-starter-data-jpa   数据库存储管理
spring-boot-starter-security    安全管理
spring-boot-star...]]></description><category></category></item><item><title><![CDATA[Java——Maven使用]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103955001</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103955001</guid><author>weixin_43835659</author><pubDate>Mon, 13 Jan 2020 14:48:11 +0800</pubDate><description><![CDATA[Maven简介
Maven 是 Apache 下的一个纯 Java 开发的开源项目。基于项目对象模型（缩写：POM）概念，Maven利用一个中央信息片断能管理一个项目的构建、报告和文档等步骤。Maven是一个项目管理工具，可以对 Java 项目进行构建、依赖管理。
项目结构
Maven 提倡使用一个共同的标准目录结构，Maven 使用约定优于配置的原则。




目录
说明




${based...]]></description><category></category></item><item><title><![CDATA[安装——Linux安装Seata]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103920319</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103920319</guid><author>weixin_43835659</author><pubDate>Fri, 10 Jan 2020 11:17:18 +0800</pubDate><description><![CDATA[安装——Linux安装Seata
Seata是阿里巴巴开源的分布式事务中间件，以高效并且对业务0 侵入的方式，解决微服务场景下面临的分布式事务问题。附上项目github链接：https://github.com/seata
Seata解决方案
解决分布式事务问题，有两个设计初衷:
对业务无侵入：即减少技术架构上的微服务化所带来的分布式事务问题对业务的侵入
高性能：减少分布式事务解决方案所带来的性能...]]></description><category></category></item><item><title><![CDATA[安装——Linux7.x安装Nacos]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103919819</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103919819</guid><author>weixin_43835659</author><pubDate>Fri, 10 Jan 2020 10:23:56 +0800</pubDate><description><![CDATA[安装——Linux7.x安装Nacos
Nacos是阿里巴巴开源的一款支持服务注册与发现，配置管理以及微服务管理的组件。用来取代以前常用的注册中心（zookeeper , eureka等等），以及配置中心（spring cloud config等等）。Nacos是集成了注册中心和配置中心的功能，做到了二合一。
快速开始，官方文档：https://nacos.io/zh-cn/docs/quick-...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装Zookeeper]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103919044</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103919044</guid><author>weixin_43835659</author><pubDate>Fri, 10 Jan 2020 09:56:26 +0800</pubDate><description><![CDATA[查看zookeeper镜像

docker search zookeeper


镜像下载

docker pull zookeeper


启动 ZK 镜像

docker run --name zookeeper -p 2181:2181 -d zookeeper:latest


查看 ZK 的运行情况,

docker logs -f zookeeper

输出类似如下内容时, 表示 Z...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装ActiveMQ]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103918637</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103918637</guid><author>weixin_43835659</author><pubDate>Fri, 10 Jan 2020 09:15:06 +0800</pubDate><description><![CDATA[Docker——Docker安装ActiveMQ

搜索 ActiveMQ 镜像

docker search activemq


获取 ActiveMQ 镜像

docker pull webcenter/activemq


查看本地镜像

docker image


docker 启动 ActiveMQ 命令

docker run -d --name activemq -p 61617...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装Sentinel]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103915402</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103915402</guid><author>weixin_43835659</author><pubDate>Thu, 09 Jan 2020 20:42:14 +0800</pubDate><description><![CDATA[Docker——Docker安装Sentinel
Sentinel是面向分布式服务框架的轻量级流量控制框架,主要以流量为切入点,从流量控制,熔断降级,系统负载保护等多个维度来维护系统的稳定性.

拉取镜像：

docker pull bladex/sentinel-dashboard


运行镜像：

docker run --name sentinel -d -p 8858:8858 -d bl...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装Redis4.0]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103910746</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103910746</guid><author>weixin_43835659</author><pubDate>Thu, 09 Jan 2020 17:30:00 +0800</pubDate><description><![CDATA[通过Docker安装Redis4.0

docker 查询redis镜像

 docker search redis


pull镜像到本地系统中

docker pull redis:4.0.11


完成后可以用docker列出已经下载的镜像

docker images


创建目录和配置文件redis.conf(如果不事先创建好redis.conf则docker run的时候会自己创建一个...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装mysql5.7]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103910268</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103910268</guid><author>weixin_43835659</author><pubDate>Thu, 09 Jan 2020 16:15:11 +0800</pubDate><description><![CDATA[通过Docker安装MySQL5.7

pull镜像到本地系统中

 docker pull mysql:5.7


完成后可以用docker列出已经下载的镜像

docker images


启动容器
（我这里使用的端口号是13306，可以修改为常用的3306）

docker run --name mysql5.7 -p 13306:3306 -e MYSQL_ROOT_PASSWORD=1...]]></description><category></category></item><item><title><![CDATA[Docker——Docker安装]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103909803</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103909803</guid><author>weixin_43835659</author><pubDate>Thu, 09 Jan 2020 16:01:47 +0800</pubDate><description><![CDATA[Docker——Docker安装
之前写过一篇Docker初识，这一篇为Docker安装
记录一下Linux上安装Docker
以下操作均以超级管理员身份运行(root)
环境：CentOS7.x
查看Linux版本信息：lsb_release -a

将yum更新到最新
yum update

安装需要的软件包，yum-utils提供yum-config-manager功能，零瓦埃两个是devi...]]></description><category></category></item><item><title><![CDATA[架构——秒杀]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103891343</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103891343</guid><author>weixin_43835659</author><pubDate>Wed, 08 Jan 2020 15:14:48 +0800</pubDate><description><![CDATA[优化思路

分流。再牛逼的机器也抵挡不住高级别的并发。
限流。毕竟秒杀商品有限，防刷的前提下没有绝对的公平，根据每个服务的负载能力，设定流量极限。
缓存。尽量不要让大量请求穿透到DB层，活动开始前商品信息可以推送至分布式缓存。
异步。分析并识别出可以异步处理的逻辑，比如日志，缩短系统响应时间。
主备。如果有条件做好主备容灾方案也是非常有必要的(参考某年锤子的活动被攻击)。
部署模型进行优化。最后，...]]></description><category></category></item><item><title><![CDATA[技术——后端技术官网集合]]></title><link>https://blog.csdn.net/weixin_43835659/article/details/103891680</link><guid>https://blog.csdn.net/weixin_43835659/article/details/103891680</guid><author>weixin_43835659</author><pubDate>Wed, 08 Jan 2020 15:12:31 +0800</pubDate><description><![CDATA[后端技术官网集合




技术
名称
官网




Spring Framework
容器
http://projects.spring.io/spring-framework/


SpringMVC
MVC框架
http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc


Apach...]]></description><category></category></item></channel></rss>