Redis入门安装

安装C++

1
2
3
4
5
6
7
8
9
yum -y install centos-release-scl
yum -y install cpp
yum -y install binutils
yum -y install glibc
yum -y install glibc-kernheaders
yum -y install glibc-common
yum -y install glibc-devel
yum -y install gcc
yum -y install make
1
scl enable devtoolset-9 bash
阅读更多

MySQL-5.7.28分组时报错1055

问题

问题描述
1
2
错误代码: 1055
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'ht-3.0.project_info.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
阅读更多

Vue2组件通讯(父子、兄弟、全局)

前言介绍

1
2
3
4
5
6
7
8
Grandpa.vue为父组件
Father.vue为Grandpa.vue的子组件
Uncle.vue为Grandpa.vue的子组件
Son.vue为Father.vue的子组件
综上所述:
1.Grandpa与Father演示父子组件通信
2.Father与Uncle演示兄弟组件通信
3.Grandpa与Son演示全局组件通信
阅读更多

开源项目个人锦集

项目名称项目描述项目地址
RedLitchi/TencentSMS腾讯云手机验证码发送与校验https://github.com/RedLitchi/TencentSMS
人人开源人人开源官网https://www.renren.io/
人人开源/renren-security一套权限系统,极低门槛,拿来即用https://gitee.com/renrenio/renren-security
V部落(王松)Vue+SpringBoot实现的多用户博客管理平台https://github.com/lenve/VBlog
RedLitchi/12306BuyingTickets12306抢票软件(Python开发)https://github.com/RedLitchi/12306BuyingTicket
阅读更多