码迷,mamicode.com
首页 >  
搜索关键字:prefix    ( 4726个结果
HDU 11488 Hyper Prefix Sets (字符串-Trie树)
HHyper Prefix SetsPrefix goodness of a set string is length of longest common prefix*number of strings in the set. For example the prefix goodness of ...
分类:其他好文   时间:2014-07-15 08:51:08    阅读次数:261
Vim 添加vimgdb支持
./configure --enable-gdb --prefix=/usr --enable-multibyte --enable-fontset --enable-xim --enable-gui=auto --enable-pythoninterp=dynamic --enable-pytho...
分类:数据库   时间:2014-07-14 15:20:46    阅读次数:309
CakePHP不支持path/to路径,前后台无法方法
本来想把前后台分离,但是阅读了cakephp的说明,才发现,cakephp根本就不支持path/to路径。 cakephp官网给出的 管理员分离方式:http://book.cakephp.org/2.0/en/development/routing.html#prefix-routing 意思就是说所有的前端后台的控制器都在一个控制器中,然后通过admin_前缀来区分是给管理员使用还是给前端...
分类:Web程序   时间:2014-07-14 13:50:01    阅读次数:218
简单编译LAMP
前期准备,需要安装开发工具包安装方法:yumgroupinstall“Developmenttools”一、httpd1、安装apr软件包:apr-1.4.6.tar.bz2[root@clienthttpd]#tarxfapr-1.4.6.tar.bz2[root@clienthttpd]#cdapr-1.4.6[root@clientapr-1.4.6]#./configure--prefix=/usr/local/apr14[root@clie..
分类:其他好文   时间:2014-07-14 11:57:58    阅读次数:365
sphinx
sphinx编译安装:./configure--prefix=/usr/local/sphinx--with-msyql=/usr/local/mysql使用mysql作为数据源静sphinx监听在9312端口,给其他程序提供调用sphinx索引词-->词所对应的文本IDphp请求sphinx一个词语,shpinx去索引检索这个词语所对应的文本ID,然后返回文本ID,p..
分类:其他好文   时间:2014-07-14 11:32:00    阅读次数:259
linux 下curl安装与使用
安装curl官网上下载安装包 curl-7.37.0.tar.gz 解压tar -zxvf curl-7.37.0.tar.gz进入解压后的目录,指定安装目录./configure --prefix=/usr/local/curlmakemake install使用将curl命令加入环境变量vi /...
分类:系统相关   时间:2014-07-14 08:38:32    阅读次数:339
node.js安装
node.js的安装下载了.tar.gz格式的源码,tar zxvf *.tar.gz$ cd node-*$ ./configure --prefix=/usr/local/node$ make$ make install配置Node.js$ cp /usr/local/node/bin/npm ...
分类:Web程序   时间:2014-07-14 08:17:10    阅读次数:223
leetcode Longest Common Prefix 多个字符串的最长字串
1 public class Solution { 2 public String get(String a,String b) 3 { 4 5 if(a==""||b=="") return ""; 6 int len1=a.le...
分类:其他好文   时间:2014-07-13 22:05:47    阅读次数:238
php-fpm.conf配置说明(重点要修改和优化的地方)
All relative paths in this config are relative to php's install prefix Pid file /usr/local/php/logs/php-fpm.pid Error log file /usr/local/php/logs/php-fpm.log Log level notice Whe...
分类:Web程序   时间:2014-07-13 16:26:05    阅读次数:248
configure: error: XML configuration could not be found
执行: ./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm 之后出现   Running FastCGI Process Manager checks checking for php-fpm config file path... $prefix/etc/php-fpm.conf checking for ...
分类:其他好文   时间:2014-07-13 13:50:43    阅读次数:205
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!