个人技术分享

docker documentation

leafletjs英文
leafletjs中文

python for neo4j第三方库neo4j
Experience Neo4j on Your Desktop

neo4j前端组件
neo4j中文文档(可能补全)

Cypher 查询语法(中文)

Deployment Center

DELETE 
FROM
	table 
WHERE
	id NOT IN (
	SELECT
		id 
	FROM
	( 
	SELECT min( id ) AS id FROM table GROUP BY felds1,fields2,fields3 ...
	) AS tmp 
	);
	
set @@GLOBAL.sql_mode='STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';

show GLOBAL VARIABLES LIKE '%time%';
SET max_execution_time = 10000;

SELECT card_number, account_name, MIN(id) AS id FROM bank_journal_record GROUP BY card_number,created,amount,flag

=========================================================================================

celery -A celery_task status

celery -A tasks worker -l INFO

docker-compose logs -f --tail 100 web