将函数库加入内存

将函数库加入内存:
如果我们将常欧诺个带的动态函数库加载到内存当中,当软件要用动态函数库时,就不需要从硬盘里读出,这样就曾加了函数库的读取速度。
ldconfig [-f conf] [-c cache]
ldconfig [-p]
-f conf :那个conf指的某个文件名,也就是说使用conf作为library函数的取得路径,而不以/etc/ld.so.conf为默认值
-c cache:那个cache指的是某个文件名,也就是说,使用cache作为缓存暂存的函数资料库。而不以/etc/ld.so.cache为默认值
-p :列出目前的所有函数数据库内容(/etc/ld.so.cache中的数据)
[root@localhost ~]# vim /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/lib/mysql        #增加这一行
[root@localhost ~]# ldconfig
[root@localhost ~]# ldconfig -p | grep "mysql"
libmysqlclient_r.so.16 (libc6) => /usr/lib/mysql/libmysqlclient_r.so.16
libmysqlclient.so.16 (libc6) => /usr/lib/mysql/libmysqlclient.so.16


你可能感兴趣的:(mysql,软件,动态)