- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/farwish/alconSeek
- 软件文档: https://github.com/farwish/alconSeek/blob/master/readme.md
- 官方下载: https://github.com/farwish/alconSeek/archive/master.zip
软件介绍
尔康搜索(alconSeek)是一个让你极其方便地开发全文检索 Api 的应用骨架。
一. 依赖:
1). LNMP环境
搭建可参考:https://github.com/farwish/delicateShell/tree/master/lnmp
2). Composer工具
curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer
3). Phalcon框架
文档:https://docs.phalconphp.com/en/latest/reference/install.html
搭建可参考:https://github.com/farwish/delicateShell/blob/master/lnmp/installPhalcon.sh
4). Xunsearch服务
文档:http://www.xunsearch.com/doc/php/guide/start.installation
搭建可参考:https://github.com/farwish/delicateShell/blob/master/support/installXunsearch.sh
二. 部署:
sh deploy vi ./app/config/config.ini #数据库配置
三. nginx 配置部分:
server {
listen 80;
server_name alconseek.farwish.com;
root /home/www/alconSeek/public;
location / {
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?_url=$uri&$args;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}别忘了: /etc/hosts 中加入 127.0.0.1 alconseek.farwish.com
四. 数据库
你可以用phpmyadmin等软件导入我准备好的数据库进行测试, 文件是 alconseek.sql。
索引管理界面初始登录账号密码: admin / admin
五. 访问
http://www.demo.com/m
http://www.demo.com/s?q=
Head First Servlets & JSP(中文版)
(美)巴萨姆、(美)塞若、(美)贝茨 / 苏钰函、林剑 / 中国电力出版社 / 2006-10 / 98.00元
《Head First Servlets·JSP》(中文版)结合SCWCD考试大纲讲述了关于如何编写servlets和JSP代码,如何使用JSP表达式语言,如何部署Web应用,如何开发定制标记,以及会话状态、包装器、过滤器、企业设计模式等方面的知识,以一种轻松、幽默而又形象的方式让你了解、掌握servlets和JSP,并将其运用到你的项目中去。《Head First Servlets·JSP》(中......一起来看看 《Head First Servlets & JSP(中文版)》 这本书的介绍吧!
