摘要:
λ python manage.py migrate TestModelSystem check identified some issues: WARNINGS:?: (mysql.W002) MySQL Strict Mode is not set for database connection 阅读全文
摘要:
XPath XPath,全称 XML Path Language,即 XML 路径语言,它是一门在 XML 文档中查找信息的语言。最初是用来搜寻 XML 文档的,但同样适用于 HTML 文档的搜索。所以在做爬虫时完全可以使用 XPath 做相应的信息抽取。 1. XPath 概览 XPath 的选择 阅读全文
摘要:
DELETE from 表明 where id not in( select a.id from ( SELECT id FROM 表明 GROUP BY 字段 )a ) MySQL5.7版本sql_mode=only_full_group_by问题解决办法 SET sql_mode ='STRIC 阅读全文
摘要:
#!/bin/bashpath="/disk2/es" case "$1" instart) su cheng<<! cd $path ./bin/elasticsearch -d! echo "elasticsearch startup" ;;stop) es_pid=`ps aux|grep e 阅读全文