본문 바로가기

Back-end34

Elastic Search 자료구조 / GET POST PUT DELETE / UPDATE방법 ELASTIC SEARCH ELASTIC SEARCH엘라스틱 서치의 자료구조indextypedocument 엘라스틱 서치 VS 관계형DBElastic SearchRelational DBIndexDataBaseTypeTableDocumentRowFieldColumnMappingSchemaElastic SearchRelational DBGETSelectPOSTInsertDELETEDeletePUTUpdate엘라스틱서치는 Rest-API를 쓴다는 것을 짐작할 수 있다. curl -XGET localhost:9200/classes/class/1xxxxxxxxxxselect * FROM class where id=1 xxxxxxxxxxcurl -XPOST localhost:9200/classes/class/1 -.. 2018. 8. 29.
데이터베이스 JOIN 역할 SQL query JOIN SQL query JOIN demo_people 테이블namephonepidMr Brown01225 7082251Miss Smith01225 8993602Mr Pullen01380 7240403demo_property 테이블pidspidselling11Old Houser Farm32The Willows33Tall Trees34The Melksham Florist45Dun Roamin pid가 같은 것을 조건으로 xxxxxxxxxxselect name, phone, sellingfrom demo_people join demo_propertyon demo_people.pid = demo_property.pid; pid가 서로 같은이라는 조건을 두고demo_people 과 demo_.. 2018. 7. 19.
Flask 익히기 Flask 익히기 Flask 익히기 첫 예제로 숫자 입력받고 구구단 출력하는 페이지 작성from flask import Flask, requestfrom flask import render_template​app = Flask(__name__)​@app.route('/input', methods=['GET','POST'])def input(): if request.method == "POST": return render_template('input.html', number = int(request.form['number'])) else: return """ """​​if __name__ == "__main__": app.run(host='0.0.0.0', port=8787, debug=True) xxxx.. 2018. 7. 7.
Django Apache2 연동 http://idlecomputer.tistory.com/7 2018. 4. 25.
반응형