GAE Datastore Entities

我们的程序与抽象模型互动,因此不需要管理细节。

与关系型数据库大不相同,以至于谷歌称之为datastore,而非database。

App数据存储在数个不同位置,依据best-of-breed consensus protocol。

datastore最好理解为object database. datastore中的一个object理解为一个entity。

Entity: key – data

一个entity在整个系统中具有一个唯一识别key。可以根据key快速找到entity。

Key可以作为data被存储在entity中,这样能相互创建引用。

key分为几部分:

- application‘s id

- kind

- entity ID [key name(string)/ID(integer)]

entity创建后key不能变。

entity的data存储在一个或多个property中,每个property都有name和至少一个value。

========*========

Python Datastore API

Python objects来表示datastore entity:

objects的class表示了entity kind,class name表示了entity kind name。

通过继承基类,创建新class,来创建新kind的entity。

这个对象的属性对应entity的property。

调用entity的class的实例的key方法,得到一个key实例,通过调用这个实例的kind方法、d方法,可以得到这个entity的key的kind/id。

*操作注意:在测试entity之后,更新entity之前,这段空挡期间,其他程序可能更改了数据库,要避免错误,必须使用transaction。

GAE Datastore Entities,布布扣,bubuko.com

时间: 2024-10-12 22:53:27

GAE Datastore Entities的相关文章

spring jpa data笔记

tomcat启动Maven项目的时候总抛出这样的错误: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration': Injection of autowired dependencies failed; 看了一下错误的最后一句是 Cannot determine embedded database driver class for dat

JPA 教程

Entities An entity is a lightweight persistence domain object. Typically an entity represents a table in a relational database, and each entity instance corresponds to a row in that table. The primary programming artifact of an entity is the entity c

The Datastore

绝大多数的Web应用在处理一个为了以后的请求作检索用的请求时,需要存储信息.一个小网站的典型安排就是包含一个数据库服务器,然后一个或多个Web服务器连接到这个数据库进行数据的存储与获取.使用一个中央数据库服务器使得数据有一个正规表示(canonical representation)变得容易.所以多个用户访问多个Web服务器看到的是相同的最新的数据.但是一旦中央服务器达到了它的同时连接量时,很难扩展. 在这过去二十年里,用于Web应用的最流行的存储系统就是关系型数据库.用行列构成表实现空间上的高

LINQ中in的实现方法-LINQ To Entities如何实现查询 select * from tableA where id in (1,2,3,4)

如果用in是字符串类型无问题,可以直接这样用 var result = SNFService.Instance.ModuleService.GetList(UserInfo).Where(entity => entity.DeletionStateCode == 0 ).Where(entity => urls.Contains((entity.NavigateUrl == null ? "" : entity.NavigateUrl).ToLower())).OrderB

Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.

Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. 这里给大家介绍一个Exception类,让我们能够轻松的知道具体的哪一个字段出了什么问题. 那就是 System.Data.Entity.Validation.DbEntityValidationException,相信代码都知道怎么写了,最简单的就是 try{// 写数据库}catch (DbEn

Oracle Data Integrator 12c-模型(Model)和 数据存储(DataStore)

一.概念 Model模型: 描述关系型数据的模型. 是一组存放在特定的技术(如Oracle)的数据存储的集合.例如当技术为Oracle时,对应于数据库的Scheme DataStore: 数据存储 一个模型中包含的元数据,对应于模型所在scheme中的表或视图.可以通过反向工程(reverse-engineered) 从真实的环境导入, 也可以在ODI 中创建 二.支持的操作 测试表格 DROP TABLE DEPT; CREATE TABLE DEPT ( DEPTNO NUMBER (2)

LINQ to Entities 不识别方法“System int string 转换的问题

这个问题困扰了挺久,网上找了挺多方法 都太好使. 分几种情况. 1.如果查询结果 转换,那比较容易. var q = from c in db.Customers where c.Country == "UK" || c.Country == "USA" select new { Phone = c.Phone, InternationalPhone = PhoneNumberConverter(c.Country, c.Phone) }; public strin

Convert HTML Entities

将字符串中的字符 &.<.>." (双引号), 以及 ' (单引号)转换为它们对应的 HTML 实体. 如果你被卡住了,记得开大招 Read-Search-Ask.尝试与他人结伴编程.编写你自己的代码. 这是一些对你有帮助的资源: RegExp HTML Entities function convert(str) { // &colon;&rpar; var o = { "&":"&", "&

LINQ to Entities 不识别方法“System.String ToString() 的解决方法

今天在做一个页面的时候出现了LINQ to Entities 不识别方法"System.String ToString()"的错误,对于源码IQueryable<SelectListItem> items = roleInfoServer.Get(r => true).Select(r => new SelectListItem() { Value = r.Id.ToString(), Text = r.RoleName });找了好长的时间没有找到原因.无奈之