V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
ggvm
V2EX  ›  分享发现

分享免费的数据库 DBaaS 之 bit.io — 云 postgreSQL 3GB free tier

  •  
  •   ggvm · 2022-10-03 08:53:15 +08:00 · 2148 次点击
    这是一个创建于 570 天前的主题,其中的信息可能已经有所发展或是发生改变。

    bit.io 是美国一家 DBaas 厂商,提供免费 3G 的云 postgresql 额度。

    仅需企业邮箱注册,不需要绑定信用卡即可享有。

    注册网址 https://bit.io

    注册步骤

    1 提交邮箱

    <figure class="wp-block-image size-full"></figure>

    2 新建数据库

    <figure class="wp-block-image size-full"></figure> <figure class="wp-block-image size-full"></figure>

    3 查看数据库限额:

    <figure class="wp-block-image size-full"></figure>

    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 原文查看。

    后续更新我将同步发到这里。

    5 条回复    2022-10-07 17:47:45 +08:00
    shinession
        1
    shinession  
       2022-10-03 12:12:34 +08:00
    感谢楼主分享,有时间试试
    glouhao
        2
    glouhao  
       2022-10-03 20:33:29 +08:00 via Android
    有没有 mysql ,给我搬瓦工减减压
    ggvm
        3
    ggvm  
    OP
       2022-10-03 22:06:25 +08:00
    @glouhao
    https://zhuji188.com/521.html
    免费的 mysql 兼容服务 tidbcloud
    glouhao
        4
    glouhao  
       2022-10-04 06:06:18 +08:00 via Android
    @ggvm 谢谢大佬
    baiheinet
        5
    baiheinet  
       2022-10-07 17:47:45 +08:00
    挺简洁 还不错
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5373 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 07:46 · PVG 15:46 · LAX 00:46 · JFK 03:46
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.