No commit activity in last 3 years
No release in over 3 years
The PStore interfaces for the Google App Engine Datastore.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

appengine-pstore¶ ↑

DESCRIPTION:¶ ↑

The PStore interfaces for the Google App Engine Datastore.

SYNOPSIS¶ ↑

You can use the Google App Engine Datastore like PStore.

db = AppEngine::PStore.new('database.pstore')
db.transaction do |db|
  db[:key1] = "value1"
  db[:key2] = "value2"
end

db.transaction do |db|
  puts db[:key1]   # => "value1"
end

NOTE¶ ↑

A database has following limits.

  • maximum key count: 1,000 keys

  • maximum value size: 1MB

INSTALL¶ ↑

This module is hosted by gems.github.com.

sudo gem install machu-appengine-pstore --source http://gems.github.com

DEPENDENCIES¶ ↑

This library depends on appengine-apis.

Copyright © 2009 MATSUOKA Kohei. See LICENSE for details.