当前位置:  数据库>mysql

mysql数据库查询优化 mysql效率第1/3页

    来源: 互联网  发布时间:2014-09-06

    本文导语:  提高MySQL 查询效率的三个技巧小结MySQL由于它本身的小巧和操作的高效, 在数据库应用中越来越多的被采用.我在开发一个P2P应用的时候曾经使用MySQL来保存P2P节点,由于P2P的应用中,结点数动辄上万个,而且节点变化频繁,因此一...

提高MySQL 查询效率的三个技巧小结
MySQL由于它本身的小巧和操作的高效, 在数据库应用中越来越多的被采用.我在开发一个P2P应用的时候曾经使用MySQL来保存P2P节点,由于P2P的应用中,结点数动辄上万个,而且节点变化频繁,因此一定要保持查询和插入的高效.以下是我在使用过程中做的提高效率的三个有效的尝试.

l        使用statement进行绑定查询
使用statement可以提前构建查询语法树,在查询时不再需要构建语法树就直接查询.因此可以很好的提高查询的效率. 这个方法适合于查询条件固定但查询非常频繁的场合.
使用方法是:
绑定, 创建一个MYSQL_STMT变量,与对应的查询字符串绑定,字符串中的问号代表要传入的变量,每个问号都必须指定一个变量. 
查询, 输入每个指定的变量, 传入MYSQL_STMT变量用可用的连接句柄执行. 
代码如下:   
代码如下:

//1.绑定 
bool CDBManager::BindInsertStmt(MYSQL * connecthandle) 

       //作插入操作的绑定 
       MYSQL_BIND insertbind[FEILD_NUM]; 
       if(m_stInsertParam == NULL) 
              m_stInsertParam = new CHostCacheTable; 
       m_stInsertStmt = mysql_stmt_init(connecthandle); 
       //构建绑定字符串 
       char insertSQL[SQL_LENGTH]; 
       strcpy(insertSQL, "insert into HostCache(SessionID, ChannelID, ISPType, " 
              "ExternalIP, ExternalPort, InternalIP, InternalPort) " 
              "values(?, ?, ?, ?, ?, ?, ?)"); 
       mysql_stmt_prepare(m_stInsertStmt, insertSQL, strlen(insertSQL)); 
       int param_count= mysql_stmt_param_count(m_stInsertStmt); 
       if(param_count != FEILD_NUM) 
              return false; 
       //填充bind结构数组, m_sInsertParam是这个statement关联的结构变量 
       memset(insertbind, 0, sizeof(insertbind)); 
       insertbind[0].buffer_type = MYSQL_TYPE_STRING; 
       insertbind[0].buffer_length = ID_LENGTH /* -1 */; 
       insertbind[0].buffer = (char *)m_stInsertParam->sessionid; 
       insertbind[0].is_null = 0; 
       insertbind[0].length = 0; 

       insertbind[1].buffer_type = MYSQL_TYPE_STRING; 
       insertbind[1].buffer_length = ID_LENGTH /* -1 */; 
       insertbind[1].buffer = (char *)m_stInsertParam->channelid; 
       insertbind[1].is_null = 0; 
       insertbind[1].length = 0; 

       insertbind[2].buffer_type = MYSQL_TYPE_TINY; 
       insertbind[2].buffer = (char *)&m_stInsertParam->ISPtype; 
       insertbind[2].is_null = 0; 
       insertbind[2].length = 0; 

       insertbind[3].buffer_type = MYSQL_TYPE_LONG; 
       insertbind[3].buffer = (char *)&m_stInsertParam->externalIP; 
       insertbind[3].is_null = 0; 
       insertbind[3].length = 0; 

       insertbind[4].buffer_type = MYSQL_TYPE_SHORT; 
       insertbind[4].buffer = (char *)&m_stInsertParam->externalPort; 
       insertbind[4].is_null = 0; 
       insertbind[4].length = 0; 

       insertbind[5].buffer_type = MYSQL_TYPE_LONG; 
       insertbind[5].buffer = (char *)&m_stInsertParam->internalIP; 
       insertbind[5].is_null = 0; 
       insertbind[5].length = 0; 

       insertbind[6].buffer_type = MYSQL_TYPE_SHORT; 
       insertbind[6].buffer = (char *)&m_stInsertParam->internalPort; 
       insertbind[6].is_null = 0; 
       insertbind[6].is_null = 0; 
       //绑定 
       if (mysql_stmt_bind_param(m_stInsertStmt, insertbind)) 
              return false; 
       return true; 


//2.查询 
bool CDBManager::InsertHostCache2(MYSQL * connecthandle, char * sessionid, char * channelid, int ISPtype,  
              unsigned int eIP, unsigned short eport, unsigned int iIP, unsigned short iport) 

       //填充结构变量m_sInsertParam 
       strcpy(m_stInsertParam->sessionid, sessionid); 
       strcpy(m_stInsertParam->channelid, channelid); 
       m_stInsertParam->ISPtype = ISPtype; 
       m_stInsertParam->externalIP = eIP; 
       m_stInsertParam->externalPort = eport; 
       m_stInsertParam->internalIP = iIP; 
       m_stInsertParam->internalPort = iport; 
       //执行statement,性能瓶颈处 
       if(mysql_stmt_execute(m_stInsertStmt)) 
              return false; 
       return true; 

  

    
 
 

您可能感兴趣的文章:

  • C++操作MySQL大量数据插入效率低下的解决方法
  • mysql下普通索引和唯一索引的效率对比
  • 根据mysql慢日志监控SQL语句执行效率
  • MYSQL随机抽取查询 MySQL Order By Rand()效率问题
  • 作为Mysql Server, 哪个Linux 较高效率?
  • MySQL随机查询记录的效率测试分析
  • MySQL大表中重复字段的高效率查询方法
  • MySQL查询优化:LIMIT 1避免全表扫描提高查询效率
  • MYSQL 随机 抽取实现方法及效率分析
  • MySQL Order By Rand()效率分析
  • mysql分页原理和高效率的mysql分页查询语句
  • MySQL 联合索引与Where子句的优化 提高数据库运行效率
  • MySQL优化之如何查找SQL效率低的原因
  • mysql中RAND()随便查询记录效率问题和解决办法分享
  • 提高MySQL中数据装载效率
  • mysql中提高Order by语句查询效率的两个思路分析
  • MySQL中Stmt 预处理提高效率问题的小研究
  • mysql中使用UDF自动同步memcached效率笔记
  • mysql下mysql-udf-http效率测试小记
  • 提高MySQL 查询效率的三个技巧第1/2页
  • php中内置的mysql数据库连接驱动mysqlnd简介及mysqlnd的配置安装方式
  • xp下的mysql数据库如何迁移到linux中的mysql
  • Linux和windows下用mysql c++ library操作Mysql数据库
  • 解析mysql数据库还原错误:(mysql Error Code: 1005 errno 121)
  • mysql jdbc连接mysql数据库步骤及常见参数详解
  • mysql数据库中的information_schema和mysql可以删除吗?
  • mysql数据库介绍
  • mysql数据库备份命令分享(mysql压缩数据库备份)
  • mysql数据库下载安装教程和使用技巧
  • Python Mysql数据库操作 Perl操作Mysql数据库
  • 数据库迁移工具 DBConvert for MySQL & PostgreSQL
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • mysql中如何查看最大连接数(max_connections)和修改最大连接数
  • 在 linux下输入"mysql"命令,进入mysql命令行,但出现“Can't connetc to local MySQL server thuough socket /var/lib/mysql/mysql.sock
  • Mysql查询错误:ERROR:no query specified原因
  • MySQL 重装MySQL后, mysql服务无法启动
  • php安装完成后如何添加mysql扩展
  • 为什么用linux安装盘安装了mysql后,启动mysql,提示找不到mysql.sock文件?
  • mysql中查询当前正在运行的SQL语句并找出mysql中运行慢的sql语句
  • 請教,在redhat linux7.2+mysql 中,系統提示mysql已啟動,網頁卻不能訪問mysql?
  • Myeclipse中自带Tomcat的JDBC连接池配置(mysql和mssql)
  • 求解释: useradd -g mysql mysql -d /home/mysql -s /sbin/nologin
  • MySQL Workbench的下载安装与使用教程
  • 在Linux内安装了Mysql,无法进入Mysql.
  • VS2012+MySQL+SilverLight5的MVVM开发模式介绍
  • 怎样在linux终端输入mysql直接进入mysql?
  • MySQL索引基本知识
  • c++中关于#include <mysql/mysql.h>的问题?
  • Mysql设置查询条件(where)查询字段为NULL
  • mysql -u root mysql 怎么解释
  • mysql中字符串和时间互相转换的方法(自动转换及DATE_FORMAT函数)
  • mm.mysql那里可以下载?www.mysql.com根本下载不了。谢谢了
  • java将类序列化并存储到mysql(使用hibernate)
  • MySQL集群 MySQL Cluster


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3