Skip to content
This repository has been archived by the owner on Oct 24, 2020. It is now read-only.

Jwink3101/ldtable

Repository files navigation

ARCHIVED

A newer and better version is at dicttable

ldtable

A simple in memory database like object. Replace list of dictionaries with a fast, O(1) lookup, data structure.

Also supports indexing multiple items per attribute by using a list (this is not a common feature).

It is very simple and designed for small to medium databases which can exist purely in memory and where query speed is prioritized over memory usage and instantiation time.

I built it because I was querying a list of dictionaries by multiple keys inside of a loop. That cause an O(N^2) complexity and made my moderately-sized 30,000 item list intractable!

There are other solutions out there that are more traditionally database focused such as TinyDB, buzhug, etc, but do not offer the O(1) lookups and speed. It is likely at the cost of extra memory overhead.

A single SQLite table (especially with :memory: path) may check all of the boxes, but requires SQL knowledge and doesn't automatically index values.

It passes all tests (with 100% test coverage) on Python 2.7 and Python 3.6

I am not a database expert. This simple met my needs.

Install

Simply

pip install git+https://github.com/Jwink3101/ldtable

Usage:

For more full example usage, including the flexible query methods, see the tests.

Consider the following: (please do not argue accuracy. It is an example)

items = [
    {'first':'John', 'last':'Lennon','born':1940,'role':'guitar'},
    {'first':'Paul', 'last':'McCartney','born':1942,'role':'bass'},
    {'first':'George','last':'Harrison','born':1943,'role':'guitar'},
    {'first':'Ringo','last':'Starr','born':1940,'role':'drums'},
    {'first':'George','last':'Martin','born':1926,'role':'producer'}
]

If we want to find all members of The Beatles who's name is "George Harrison", we could do the following:

[item for item in items if item['first']=='George' and item['last']=='Harrison']

Which is an O(N) operation. If we are only doing it once, it is fine, but if we are doing it multiple times (especially in loops) it can cause a major bottleneck.

Instead do:

from ldtable import ldtable
DB = ldtable(items) # Will index them all

DB.query_one(first='George',last='Harrison') # or list(DB.query(...))

The creation is O(N) but the query is O(1) and can be done many times.

Queries

There are a few different methods to perform queries. It is designed to be flexible and allow for easy construction

Basic Queries

Basic queries only test equality with an and boolean relationship.

For example, to query band the example DB for band members with the first name 'George', you can do either of the following:

These return an iterator

DB.query(first='George')
DB.query({'first':'George'})
DB(first='George')          # Directly calling the object is a query()

This returns a single item:

DB[{'first':'George'}]      # item indecies can be queries or a number

To get George Harrison, you can do the following:

DB.query(first='George',last='Harrison')

Or again, you can use a dictionary or mix and match. For example:

DB.query({'first':'George'},last='Harrison')

Again, you are restricted to equality and AND relationships.

Advanced Queries

An advanced query is constructed as follows. NOTE: Python gets easily messed up with assignment. Use parentheses to separate statements!

For example, to query all elements with the first name George and the last name not Martin, you can do:

DB.query( (DB.Q.first=='George') & (DB.Q.last != 'Martin') )

Notice:

  • Use of parentheses. The queries must be separated
  • We are checking equality so == and != are used
    • You can also negate with ~ but again, be careful and deliberate about parentheses
  • We used & for and and | for or
  • <, <=, >, >=, and filters are supported but these are O(N) opperations.

You can also do more advanced boolean logic such as:

DB.query( ~( (DB.Q.role=='guitar') | (DB.Q.role=='drums')))

Filters

A filter allows for more advanced queries of the data but, as noted below, are O(N) (as with <, <=, >, >=).

For example, to perform a simple equality, the following return the same entry. But do note that the equality version is much faster.

Edge Case: If an attribute's name is 'filter', the filter method may be accessed through _filter.

# Traditional lookup:
DB.query(DB.Q.first == 'George') # equality is O(1)

# Filter lookup
filt = lambda item: True if item['first'] == 'George' else False
DB.query(DB.Q.filter(filt))

The are flexible for more advanced queries

WARNING about speed

Some of the major speed gains in this are due to the use of dictionaries and sets which are O(1) complexity.

Queries with <, <=, >, >=, and filters are O(N) opperations and should be avoided if possible.

The time complexity of a query will depend on the number of items that match any part of the query.

Loading and Saving (Dumping)

There is intentionally no built in way to dump these as they are intended to be in-memory. Of course, the a good way to save or load is as follows:

Dump:

import json
with open('DB.json','w') as F:
    json.dump(list(DB.items()),F)

Load:

from ldtable import ldtable
import json
with open('DB.json') as F:
    DB = ldtable(json.load(F))

Lists:

All attributes must be hashable. The only exception are lists in which case the list is expanded for each item. For example, an entry may be:

{'first':'George','last':'Harrison','born':1943,'role':['guitar','sitar']}

and

DB.query(role='sitar')

will return him.

Benchmarks & Complexity Testing

I compared the creating and querying a large database with the following methods. Note that some cache results so I recreated and re-queried from scratch. In practice, even caching the results does not help much if the queries change.

  • ldtable
  • simple looping with a copied list (not deepcopy though)
  • Pandas dataframe (0.16.2)
  • TinyDB (3.2.2) with in-memory storage
  • dataset (0.6.0) with slite3 in-memory storage
    • dataset is a wrapper to SQLAlchemy that (in my words) provides a noSQL interface to SQL.

I tested on my MacBook Pro (Retina, 15-inch, Mid 2014) laptop with 2.8 GHz i7 and 16 gb of ram using Python 2.7.9.

The following figure is the time to build and query the resulting data object. Note that for TinyDB, the object was deleted between tests since it caches queries

benchmarks

From the slope of the plots, you can estimate the complexity. I just calculated from the final point. The order is O(N^{slope})

Tool Query slope Create slope
pandas 0.77 1.00
ldtable 0.07 1.04
TinyDB_mem 1.05 1.00
dataset_mem 0.96 1.02
dataset_mem_index -0.04 1.01
loop_copy 1.05 1.00
sqlite 1.02 1.01
sqlite_indx 0.03 1.00

SQLite dataset (when both used indexes) exhibit the near-linear time scaling as ldtable. Dataset is about as simple to use, but, while scales as O(1) is signifgantly slowe. It also has many more dependancies (SQLAlchemy amongst others).

SQLite is nearly as fast and is a very good alternative if you do not mind writing SQL statements.

Both database-based tools also have the advantages of being able to use a file instead of being in memory, but neither offer the same ease of use (or, for the case of dataset, it is different)

Which tool is the best will be problem dependent, but these results make a strong argument for ldtable when query time is valued over other measures.

Known Issues

None at the moment.

There is 100% (!!!) test coverage. Of course that doesn't mean there aren't bugs. If you find any, please report them.

Limitations

  • The entire DB exists in memory
  • Serializing (dumping) is not included though is easy to do with JSON or the like. See above
  • The index used in the dictionary is itself a dictionary with keys as any value. Since these are all done as pointers to original list, the memory footprint should be small.
  • This has not been tested for thread-safety! (and is very likely not thread safe)

About

In memory noSQL database-like object with O(1) queries

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published