zlacker

[parent] [thread] 3 comments
1. rebane+(OP)[view] [source] 2024-10-13 11:09:06
Datalog does not use backtracking, and is getting ever increasingly more popular.

See: - The fastest non-incremental embedded Datalog engine https://github.com/s-arash/ascent - The state-of-the-art non-embedded and non-incremental Datalog engine https://github.com/knowsys/nemo - A python library that contains an embedded incremental Datalog engine https://github.com/brurucy/pydbsp - A Rust library that provides a embedded incremental Datalog engine over property graphs https://github.com/brurucy/materialized-view

replies(1): >>lapino+k6
2. lapino+k6[view] [source] 2024-10-13 12:22:19
>>rebane+(OP)
Datalog is a nice query language but it is far more limited than prolog or general purpose logic programming.
replies(1): >>convol+aH
◧◩
3. convol+aH[view] [source] [discussion] 2024-10-13 17:08:06
>>lapino+k6
there is a really interesting space between queries and prolog which includes mundane junk like encoding and rendering and data formatting changes that benefits in evaluation from having less power but maintains the lovely expressibility and analysis that we get from 'real' logic programming.

there's lots of exploring left to do

replies(1): >>rebane+802
◧◩◪
4. rebane+802[view] [source] [discussion] 2024-10-14 06:04:55
>>convol+aH
That's why embedded Datalog is so good. You can delegate all that to the host language.
[go to top]