免费的数据库DBaaS之 bit.io — 云postgresql限额3G存储
bit.io 是美国一家DBaas厂商,提供免费3G的云postgresql额度。
仅需企业邮箱注册,不需要绑定信用卡即可享有。
注册网址 https://bit.io
注册步骤
1 提交邮箱

2 新建数据库


3 查看数据库限额:

python程序连接数据库
安装python需要的库
安装:pip install bitdotio[psycopg2-binary]
以下是程序示例
#!/usr/bin/env python3
import bitdotio
from pprint import pprint
yun_key = 'v2_3uXSc_xxxx'
#!/usr/bin/env python3
import bitdotio
from pprint import pprint
# Connect to bit.io
b = bitdotio.bitdotio( yun_key )
# How about some database queries?
# NOTE: v2 connections require specification of the database name, because
# v2 bit.io is built around independent user databases, not repos (schemas) on a single database.
dbname = 'jones/cca'
conn = b.get_connection(dbname)
cur = conn.cursor()
import time
time
st = time.time()
for i in range(40):
cur.execute("SELECT 1")
se = time.time()
print ("fetch time " + str( ( se - st ) / 40) )
pprint(cur.fetchone())
总结: bit.io 提供的3G存储的postgreSQL,数据托管在GCP云中,美国的VPS连过去速度不错;对一般的数据库存储,需求已经足够。更多的免费数据库和其他资源,访问 https://zhuji188.com/748.html 原文查看。
后续更新我将同步发到这里。
更多免费数据库vps等,访问https://zhuji188.com/758.html
主机差评君首发于zhuji188.com,转发请标明来源https://zhuji188.com/748.html
THE END
二维码
共有 1 条评论