Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

Bitcache

Compare

  Analyzed about 17 hours ago

Distributed, content-addressable storage system with repository backends for Memcached, SFTP, Amazon S3, etc.

6.52K lines of code

0 current contributors

over 12 years since last commit

2 users on Open Hub

Inactive
4.5
   
I Use This

pyrant

Compare

  No analysis available

A pythonic python-only implementation of Tokyo Tyrant protocol. Table extension and query operations are also implementend. Python 2.4+ is needed This library takes a "pythonic" approach to make it more clear and easy to implement. This code is based on pytyrant More information about Tokyo ... [More] Cabinet: http://tokyocabinet.sourceforge.net/ More information about Tokyo Tyrant: http://tokyocabinet.sourceforge.net/tyrantdoc/ Hash DatabaseUsing hash database is like using dictionaries on python with some extra features. (You can see the docstrings to learn all the features) >>> import pyrant >>> t = pyrant.Tyrant(host='127.0.0.1', port=1978) >>> t['key'] = 'foo' >>> print t['key'] foo >>> t.concat('key', 'bar') >>> print t['key'] foobar >>> 'key' in t True >>> del t['key'] >>> print t['key'] Traceback (most recent call last): ... KeyError: 'key'Table Databasepyrant supports table records and query operations. To insert a record just use as before but set a dictionary as value. Table record example >>> from pyrant import Tyrant, Q >>> t = Tyrant(host='127.0.0.1', port=1978) >>> t['i'] = {'name': 'Martin Conte Mac Donell', 'gender': 'M', 'age': 26} >>> t['you'] = {'name': 'Guido', 'gender': 'M', 'age': 33} >>> print t['i'] {'name': 'Martin Conte Mac Donell', 'gender': 'M'}FilterYou can query elements using lazy filters. Every filter is added using "AND" operator, if you want to "OR" some field, you should use Q object (see below). Keys that you can use in queries are: __eq: Equals (default) to expression __lt: Less than expression __le: Less or equal to expression __gt: Greater than expression __ge: Greater or equal to expression Query filter example code >>> res = t.query.filter(gender='M') # Query is not done yet >>> res # Here query is performed [{'i': {'gender': 'M', 'age': '26', 'name': 'Martin Conte Mac Donell'}}, {'you': {'gender': 'M', 'age': '33', 'name': 'Guido'}}]Query example using Q >>> res = t.query.filter(gender='M') # Query is not done yet >>> res = res.filter(Q(age=26) | Q(age=33)) # Query is not done yet >>> print res # Here query is performed [{'i': {'gender': 'M', 'age': '26', 'name': 'Martin Conte Mac Donell'}}, {'you': {'gender': 'M', 'age': '33', 'name': 'Guido'}}]OrderOrdering elements are another great feature. It is used to define result order. Name parameter is the column name, also you can prefix "-" to order desc. If "#" is added just before column name, column are ordered as numbers Examples: order('-name') order('-#ranking') order('name') Order example code # You can order using: >>> res.order('#age') # New query is performed [{'i': {'gender': 'M', 'age': '26', 'name': 'Martin Conte Mac Donell'}}, {'you': {'gender': 'M', 'age': '33', 'name': 'Guido'}}] >>> res.order('-#age') # New query is performed [{'you': {'gender': 'M', 'age': '33', 'name': 'Guido'}}, {'i': {'gender': 'M', 'age': '26', 'name': 'Martin Conte Mac Donell'}}]Limit / OffsetYou can also subscript Query objects to limit or offset your results. Limit example code >>> res[1:2] [{'i': {'gender': 'M', 'age': '26', 'name': 'Martin Conte Mac Donell'}}] [Less]

0 lines of code

0 current contributors

0 since last commit

1 users on Open Hub

Activity Not Available
5.0
 
I Use This
Mostly written in language not available
Licenses: apache_2

EJDB

Compare

  Analyzed about 23 hours ago

EJDB is an embedded JSON database engine. It aims to be a fast MongoDB-like library which can be embedded into C/C++ applications. Features: * MongoDB-like queries and overall philosophy. * Collection level write locking. * Collection level transactions. * String token matching queries * Node.js binding

15.2K lines of code

6 current contributors

2 months since last commit

1 users on Open Hub

Very Low Activity
0.0
 
I Use This

eTokyoCabinet

Compare

  Analyzed about 17 hours ago

Eiffel Binding of Tokyo Cabinet

10.2K lines of code

0 current contributors

almost 14 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This
Licenses: No declared licenses