为什么远程连接数据库速度会很慢?

本文通过实例分析,发现登录页面加载耗时主要由特定SQL语句引起,进一步定位到数据库远程连接为根本原因。通过调整MySQL配置文件my.ini中的[mysql]属性,禁用DNS主机名解析或增加主机名缓存大小,有效提升了数据库连接速度。
摘要由CSDN通过智能技术生成

(1)点击登陆后,跳转到首页(index.jsp)耗时9973ms,追根溯源,发现是sql语句中select * xxxx,就用了9000ms时间。

 <resultMap type="User" id="userResultMap">
        <id column="user_id" property="userId"/>
        <result column="loginname" property="loginname"/>
        <result column="username" property="username"/>
        <result column="password" property="password"/>
        <result column="rights" property="rights"/>
        <result column="status" property="status"/>
        <result column="role_id" property="roleId"/>
        <result column="parent_id" property="parentId"/>
    </resultMap> 
<select id="getUserByNameAndPwd" parameterType="User" resultMap="userResultMap">
        select * from tb_user 
            <where>
                <if test="loginname!=null and password!=null">
                    loginname = #{loginname} and password=#{password}
                </if>
            </where>
    </select>

但是

这里写图片描述

(2)分析问题:

Java程序中发现罪魁祸首就是,方法读取数据很耗时

这里写图片描述

sql很简单,不是sql的原因。

ssm框架我也怀疑过,但也不是它的原因。

最终我换了一个数据库连接,问题就解决了。

所以得出结论:数据库远程连接的问题

(3)解决问题:

在数据库配置文件my.ini(Windows下)中,修改[mysql]属性,看图

这里写图片描述

说明:How MySQL uses DNS
When a new thread connects to mysqld, mysqld will spawn a new thread to handle the request. This thread will first check if the hostname is in the hostname cache. If not the thread will call gethostbyaddr_r() and gethostbyname_r() to resolve the hostname.
If the operating system doesn’t support the above thread-safe calls, the thread will lock a mutex and call gethostbyaddr() and gethostbyname() instead. Note that in this case no other thread can resolve other hostnames that is not in the hostname cache until the first thread is ready.
You can disable DNS host lookup by starting mysqld with –skip-name-resolve. In this case you can however only use IP names in the MySQL privilege tables.
If you have a very slow DNS and many hosts, you can get more performance by either disabling DNS lookop with –skip-name-resolve or by increasing the HOST_CACHE_SIZE define (default: 128) and recompile mysqld.
You can disable the hostname cache with –skip-host-cache. You can clear the hostname cache with FLUSH HOSTS or mysqladmin flush-hosts.
If you don’t want to allow connections over TCP/IP, you can do this by starting mysqld with –skip-networking.
根据文档说明,如果你的mysql主机查询DNS很慢或是有很多客户端主机时会导致连接很慢,由于我们的开发机器是不能够连接外网的,所以DNS解析是不可能完成的,从而也就明白了为什么连接那么慢了。同时,请注意在增加该配置参数后,mysql的授权表中的host字段就不能够使用域名而只能够使用 ip地址了,因为这是禁止了域名解析的结果。
(4)参考博客:

1 连接mysql数据库速度很慢的原因1
2 连接mysql数据库速度很慢的原因2

在.NET Core中使用SQLSugar连接数据库,首先你需要安装SqlSugarORM库。你可以通过NuGet包管理器或命令行来完成这个操作。下面是简单的步骤: 1. **安装SqlSugarORM**:打开命令提示符或PowerShell,导航到你的项目目录,然后输入以下命令: ``` dotnet add package SqlSugar --version [最新版本] ``` 其中[最新版本]应替换为你要安装的具体版本号,可以从SqlSugar的GitHub页面或其他包管理源获取。 2. **添加配置**:创建一个或在现有配置文件(如appsettings.json)中添加数据库连接信息,包括数据库名称、服务器地址、用户名和密码等。示例: ```json { "ConnectionStrings": { "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=YourDatabase;Trusted_Connection=True;" } } ``` 3. **创建上下文类**:使用SqlSugarHelper创建一个DBContext类,它自动处理所有的数据库操作。例如: ```csharp public class YourDbContext : DbContext { private readonly ISqlSugarClient _sqlSugarClient; public YourDbContext(DbContextOptions<YourDbContext> options) : base(options) { _sqlSugarClient = new SqlSugarClient(new ConnectionConfig { DbType = DbType.SqlServer, ConnectionString = Configuration.GetConnectionString("DefaultConnection") }); } public ITable<T> GetTable<T>() where T : ActiveRecordBase { return _sqlSugarClient.GetTable<T>(); } // 其他自定义方法... } ``` 这里假设你的数据表继承了SqlSugar的ActiveRecordBase类。 4. **开始使用**:在你的业务逻辑中,通过注入`YourDbContext`来执行查询和插入操作: ```csharp public class UserService { private readonly YourDbContext _dbContext; public UserService(YourDbContext dbContext) { _dbContext = dbContext; } public List<User> GetAllUsers() { var users = _dbContext.GetTable<User>().ToList(); return users; } // 更多方法... } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值