码迷,mamicode.com
首页 >  
搜索关键字:caching    ( 616个结果
MemoryCache类使用记录
NuGet引用Microsoft.Extensions.Caching.Memory包 引用命名空间 using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Options; 实例化之后就可以使用. static v ...
分类:系统相关   时间:2020-01-27 09:42:39    阅读次数:98
docker 中安装mysql8之后无法远程连接的问题caching-sha2-password
#修改加密规则 ALTER USER 'root'@'%' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #更新一下用户的密码 ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password B ...
分类:数据库   时间:2020-01-18 12:30:39    阅读次数:122
.Net Core Web Api实践(四)填坑连接Redis时Timeout performing EVAL
前言:前两篇文章.net core+Redis+IIS+nginx实现Session共享中,介绍了使用Microsoft.Extensions.Caching.Redis实现Session共享的方法,但是高并发时会有连接Redis出现Timeout的问题,这篇文章将介绍该问题的解决方案。 1、环境及 ...
分类:Windows程序   时间:2020-01-17 11:51:17    阅读次数:118
深度学习——反向传播tensorflow实现
1 import tensorflow as tf 2 import numpy as np 3 4 """ 5 使用tensorflow 实现简单的 线性回归 y = np.dot(x, W) + b 6 """ 7 8 def f1(): 9 """ 10 先使用常量进行构建,展示大致的业务逻辑 ...
分类:其他好文   时间:2020-01-15 14:08:13    阅读次数:74
MySQL刚安装完,连接的时候 连接出现 Authentication plugin 'caching_sha2_password' cannot be loaded
很多用户在使用Navicat Premium 12连接MySQL数据库时会出现Authentication plugin 'caching_sha2_password' cannot be loaded的错误。 出现这个原因是mysql8 之前的版本中加密规则是mysql_native_passwo ...
分类:数据库   时间:2020-01-01 09:56:14    阅读次数:86
Navicat连接MySQL8+时出现2059报错
当我们连接时,会报2059错误 在用navicat连接MySQL8+时会出现2059错误,这是由于新版本的MySQL使用的是caching_sha2_password验证方式,但此时的navicat还没有支持这种验证方式。解决方法就是将验证方式改为以前版本(5.7及以下)使用的验证方式mysql_n ...
分类:数据库   时间:2019-12-24 18:21:05    阅读次数:109
flask-高级晋升
一、缓存 flask-caching 缓存数据 减少磁盘IO,提升服务器响应速度,提升用户体验 优先选择内存级缓存 使用Redis这种内存级数据库 1 from flask import Flask 2 from flask_caching import Cache 3 4 app = Flask( ...
分类:其他好文   时间:2019-12-17 00:24:57    阅读次数:157
navicat连接异常 authentication plugin 'caching_sha2_password' 问题解决
原文地址:https://blog.csdn.net/m290345792/article/details/88316962 https://blog.csdn.net/hello_world_qwp/article/details/79551789 这是密码策略问题 解决办法 查看mysql初始密 ...
分类:其他好文   时间:2019-12-13 21:56:24    阅读次数:121
学习-guava
Guava Guava工程包含了若干被Google的 Java项目广泛依赖 的核心库 例如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common a ...
分类:其他好文   时间:2019-12-10 13:36:02    阅读次数:108
第十一章 缓存机制——《跟我学Shiro》
转发地址:https://www.iteye.com/blog/jinnianshilongnian-2029217 跟我学Shiro 转发地址:https://www.iteye.com/blog/jinnianshilongnian-2029217 跟我学Shiro 目录贴: 跟我学Shiro目 ...
分类:其他好文   时间:2019-11-28 12:58:55    阅读次数:71
616条   上一页 1 ... 6 7 8 9 10 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!