OrientDB Schema 的替代方案

Alternatives for OrientDB Schema

OrientDB 文档描述了如何使用其 API 支持的架构来 Java 图形数据库,如下所示..

profile.createProperty("nick", OType.STRING).setMin("3").setMax("30").setMandatory(true).setNotNull(true);

是否有其他可能的替代方案来创建和实施 OrientDB 模式? (即 XML、JSON、XSD)或者他们的 API 是唯一的方法吗?

您可以从 OrientDB Studio (web UI) 或使用简单的 SQL 语句(从 Studio、控制台、任何编程 API 或 REST 协议 http://orientdb.com/docs/last/OrientDB-REST.html),例如

 create class Person extends V
 create property Person.name STRING 
 alter property Person.name MANDATORY true

http://orientdb.com/docs/last/SQL-Create-Class.html

http://orientdb.com/docs/last/SQL-Create-Property.html