라벨이 데이터캐싱인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

Memcached를 이용한 php - 설치와 예제

  Memcached를 이용한 php - 설치와 예제 Memcached 의 활용 웹서버 같은 트래픽이 많은 서비스에서 memcache를 사용하면 DB부하나 불필요한 I/O를 줄일수 있습니다. 예를 들어 홈페이지 메인의 HTML에 노출되는 Data를 웹캐싱으로 처리하면 대량의 트레픽이 발생 하더라도 DB의 부하를 주지 않을 수 있습니다. 특정 Interval간 변하지 않는 데이터를 memcache에 캐싱하면 DB를 읽지 않아 부하를 경감할 수 있습니다. 주로 Data를 DB에 넣지 않고 사용자 끼리 통신을 하는 채팅이나 메시지서비스 등에 활용하면 효과적입니다.     Memcached 설치   1. install_memcached.sh 를 아래 내용으로 만들어 Root 계정으로 실행    # 다음과 같이 소스 다운로드와 설치 옵션을 함께 스크립트로 작성합니다. VER= "1.4.15" arc_name= "memcached-$VER.tar.gz" if [ ! -f "$arc_name" ] then wget http://memcached.googlecode.com/files/memcached-$VER.tar.gz -O $arc_name fi yum install -y "libevent*" # 필요한 패키지 설치 tar xvzf "$arc_name" cd "memcached-$VER" OPTIONS= " --with-libevent=/usr " ./configure $OPTIONS && make && sudo make install cp -p scripts/memcached.sysv /etc/rc.d/init.d/memcached chmod 755 /etc/rc.d/init.d/memcached ls -al /etc/rc.d/init.d/memcached /

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)