This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html><head> | |
| <noscript> | |
| <meta http-equiv="refresh"content="0;URL=http://ibn.adreach.co/ads-request?t=3&j=0&i=182324434&s=I03025149477501061917&a=http://www.livescore.com/"/> | |
| </noscript> | |
| <link href="http://ibn.adreach.co:8004/COMMON/css/ibn_20150915.css" rel="stylesheet" type="text/css"> | |
| <script type="text/javascript" src="http://ibn.adreach.co/ads-request?t=3&j=2&callback=ibn.jsonp313&rnd=313&a=http%3A%2F%2Fwww.livescore.com%2F&i=182324434&s=I03025149477501061917"></script><style type="text/css"> | |
| :root #content > #center > .dose > .dosesingle, | |
| :root #content > #right > .dose > .dosesingle | |
| { display: none !important; }</style><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="apple-mobile-web-app-capable" content="no"><title>LiveScore Soccer : Live Soccer Scores by LiveScore.com</title><script type="text/javascript" src="http://ibn.adreach.co/ads-reset?j=2&adsTransactionId=D0394775012212561&orgUrl=http%3A%2F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ python hs.py | |
| **/ Benchmarking Handlersocket - START /** | |
| Elapsed time: 9.35 seconds | |
| Speed : 10693.14 queries/second | |
| **/ Benchmarking Handlersocket - END /** | |
| **/ Benchmarking MySQL - START /** | |
| Elapsed time: 12.11 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pyhs import Manager | |
| import MySQLdb | |
| import time | |
| def run_handlersocket(maximum): | |
| hs = Manager() # Assuming that Handlersocket is available at 127.0.0.1 | |
| print '**/ Benchmarking Handlersocket - START /**\n' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pyhs import Manager | |
| def main(): | |
| hs = Manager() # Assuming that Handlersocket is available at 127.0.0.1 | |
| user = hs.find('fun', 'user', '>=', ['user_id', 'user_name', 'user_email', 'created'], ['tistaharahap'], 'usernames', 1) | |
| print dict(user[0]) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE INDEX usernames ON `user` (user_name); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ python hs.py | |
| {'user_name': 'tistaharahap', 'user_id': '1', 'user_email': 'tista@example.org', 'created': '2016-09-06 15:00:00'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pyhs import Manager | |
| def get_user_by_id(hs, user_id): | |
| pass | |
| def main(): | |
| hs = Manager() # Assuming that Handlersocket is available at 127.0.0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ pip install -r requirements.txt | |
| Collecting python-handler-socket (from -r deps (line 1)) | |
| Downloading python-handler-socket-0.2.4.tar.gz | |
| Building wheels for collected packages: python-handler-socket | |
| Running setup.py bdist_wheel for python-handler-socket ... done | |
| Stored in directory: /Users/tista/Library/Caches/pip/wheels/48/7c/46/ee1c1e3dabc22527c8780ac7ae3ca7ba03a66e6720d5d1f481 | |
| Successfully built python-handler-socket | |
| Installing collected packages: python-handler-socket | |
| Successfully installed python-handler-socket-0.2.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python-handler-socket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE user ( | |
| user_id INT UNSIGNED PRIMARY KEY, | |
| user_name VARCHAR(50), | |
| user_email VARCHAR(255), | |
| created DATETIME | |
| ) ENGINE=InnoDB; |