goatfish

由SQLite支持的小型无架构Python ORM。(A small, schemaless Python ORM that is backed by SQLite.)

  • 所有者: skorokithakis/goatfish
  • 平台: Linux, Mac, Windows
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Description

Build Status
Code Shelter

goatfish is a small, schemaless ORM that is backed by SQLite.

It's also this:

A goatfish

Its usage is very simple, just have your classes inherit from goatfish.Model
and and specify a connection, and the goatfish methods are available to you.
goatfish also supports querying for arbitrary properties in your models, as
well as indexing on arbitrary properties. It does not enforce a schema of any
kind.

It appears that this method is identical to what FriendFeed used to implement
a schemaless layer over MySQL, which is pretty significant validation:

http://backchannel.org/blog/friendfeed-schemaless-mysql

Usage

To use goatfish, all you need to do is create a class that inherits from
goatfish.Model:

import goatfish
import sqlite3

class Test(goatfish.Model):
    class Meta:
        # This is so we know where to connect.
        connection = sqlite3.connect(":memory:")
        indexes = (
            ("foo",),
            ("foo", "bar"),
        )

# Create the necessary tables. If they exist, do nothing.
Test.initialize()

foo = Test()
foo.foo = "hi"
foo.bar = "hello"
foo.save()

# Retrieve all elements.
>>> [test.bar for test in Test.find()]
['hello']

# Run a query with parameters (slow, loads every item from the DB to check it).
>>> [test.bar for test in Test.find({"bar": "hello"})]
['hello']

# This uses an index, so it's fast.
>>> [test.foo for test in Test.find({"foo": "hi"})]
['hi']

# Run a query with a parameter that doesn't exist in the dataset.
>>> [test.bar for test in Test.find({"bar": "hello", "baz": "hi"})]
[]

>>> Test.find_one({"bar": "hello"}).foo
"hi"

>>> print(Test.find_one({"bar": "doesn't exist"}))
None

# Delete the element.
>>> foo.delete()

# Try to retrieve all elements again.
>>> [test.bar for test in Test.find()]
[]

Indexes

What sets goatfish apart from other modules such as shelve, zodb,
etc is its ability to query random attributes, and make those queries faster
by using SQLite indexes.

The way this is achieved is by creating an intermediate table for each index
we specify. The index tables consist of the uuid column, and one column for
every field in the index. This way, we can store the value itself in these
index tables and query them quickly, as the rows have SQLite indexes
themselves.

The find() method uses these indexes automatically, if they exist, to avoid
sequential scans. It will automatically use the largest index that contains
the data we want to query on, so a query of {"foo": 3, "bar": 2} when only
foo is indexed will use the index on foo to return the data, and do a
sequential scan to match bar.

Right now, new indexes are only populated with data on save(), so you might
miss rows when querying on indexes that are not ready yet. To populate indexes,
go through the objects in your model and perform a save() in each of them.
Convenience functions to populate single indexes will be provided shortly.

Installation

To install goatfish you need:

  • Python 2.5 or later in the 2.x line (3.x and earlier than 2.5 not tested).

You have multiple options of installation:

License

goatfish is distributed under the BSD license.

主要指标

概览
名称与所有者skorokithakis/goatfish
主编程语言Python
编程语言Python (语言数: 1)
平台Linux, Mac, Windows
许可证
所有者活动
创建于2012-02-15 21:57:43
推送于2024-08-22 00:06:46
最后一次提交2024-08-22 03:06:46
发布数2
最新版本名称v2.0.0a0 (发布于 2020-11-11 00:31:24)
第一版名称v0.1.0 (发布于 )
用户参与
星数236
关注者数4
派生数25
提交数36
已启用问题?
问题数8
打开的问题数1
拉请求数3
打开的拉请求数0
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?