[untitled]
2 pointsby mwhite0 comments
* The editor can be integrated with an LLM.
* DOM-manipulating and MVC apps can be automatically rewritten as functional-reactive
I am gearing up to begin implementing this, apart from the already finished React JSON API and mostly finished SQLAlchemy GBAC, under a restrictive non-commercial human-only otherwise free license. Let me know if you'd like to contribute. select
data.id,
data.fields,
fk_1.obj_id as 'foo_id'
fk_2.obj_id as 'bar_id'
from data
join fk as fk_1 on data.id = fk_1.subj_id
join fk as fk_2 on data.id = fk_2.subj_id
where
data.type = 'my_table'
and fk_1.type = 'foo'
and fk_2.type = 'bar'
What would the performance characteristics of that be versus if "foreign keys" are stored in the same table as the data, if fk has the optimal indexes?