Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am sending a bunch of sensor readings from my raspberrypi to a hosted php+mysql database using 3g network. I wrote the following code:

import requests
payload = {'reading1': 'xxxxxxx', 'reading2': 'xxxxxxx'}
r = requests.post("http://x.x.net/x.php", params=payload)
print r.status_code

My readings can be very frequent (around 1 reading per second). My question is, is this a good practice to write this post request? or should I store my readings in a variable and make the post request every 5 minutes. If the latter is better, how can I do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
732 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...