Skip to content
Snippets Groups Projects
Commit f0f6dad6 authored by inso's avatar inso
Browse files

Requests are now cached when they go throught a community object

parent a33ed263
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ from ucoinpy import PROTOCOL_VERSION ...@@ -9,6 +9,7 @@ from ucoinpy import PROTOCOL_VERSION
from ucoinpy.documents.peer import Peer, Endpoint, BMAEndpoint from ucoinpy.documents.peer import Peer, Endpoint, BMAEndpoint
from ucoinpy.documents.block import Block from ucoinpy.documents.block import Block
import logging import logging
import time
class Community(object): class Community(object):
...@@ -21,6 +22,8 @@ class Community(object): ...@@ -21,6 +22,8 @@ class Community(object):
''' '''
self.currency = currency self.currency = currency
self.peers = peers self.peers = peers
self.requests_cache = None
self.last_block = None
@classmethod @classmethod
def create(cls, currency, peer): def create(cls, currency, peer):
...@@ -100,9 +103,41 @@ class Community(object): ...@@ -100,9 +103,41 @@ class Community(object):
logging.debug("Peers : {0}".format(self.peers)) logging.debug("Peers : {0}".format(self.peers))
for peer in self.peers: for peer in self.peers:
e = next(e for e in peer.endpoints if type(e) is BMAEndpoint) e = next(e for e in peer.endpoints if type(e) is BMAEndpoint)
logging.debug("Trying to connect to : " + peer.pubkey) # We request the current block every five minutes
req = request(e.conn_handler(), **req_args) # If a new block is mined we reset the cache
data = req.get(**get_args) if self.last_block is None:
block = bma.blockchain.Current(e.conn_handler()).get()
self.last_block = {"request_ts": time.time(),
"number": block['number']}
elif self.last_block["request_ts"] < time.time() - 300:
block = bma.blockchain.Current(e.conn_handler()).get()
self.last_block = {"request_ts": time.time(),
"number": block['number']}
self.requests_cache = None
cache_key = (hash(request),
hash(tuple(frozenset(sorted(req_args.keys())))),
hash(tuple(frozenset(sorted(req_args.items())))),
hash(tuple(frozenset(sorted(get_args.keys())))),
hash(tuple(frozenset(sorted(get_args.items())))))
# If the cache was cleared, let's initialize a new one
if self.requests_cache is None:
req = request(e.conn_handler(), **req_args)
data = req.get(**get_args)
self.requests_cache = {cache_key: data}
else:
if cache_key in self.requests_cache.keys():
logging.debug("Cache : {0} : {1}".format(cache_key,
self.requests_cache[cache_key]))
return self.requests_cache[cache_key]
# If we cant find it, we request for it
else:
logging.debug("Connecting to {0}:{1}".format(e.server,
e.port))
req = request(e.conn_handler(), **req_args)
data = req.get(**get_args)
self.requests_cache[cache_key] = data
return data return data
def post(self, request, req_args={}, post_args={}): def post(self, request, req_args={}, post_args={}):
......
...@@ -14,7 +14,6 @@ import base64 ...@@ -14,7 +14,6 @@ import base64
class Wallet(object): class Wallet(object):
''' '''
A wallet is used to manage money with a unique key. A wallet is used to manage money with a unique key.
''' '''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment