Skip to content
Snippets Groups Projects
Commit 6f7cb416 authored by Grant Weddell's avatar Grant Weddell
Browse files

Update README.md

parent 0da617bf
No related branches found
No related tags found
No related merge requests found
...@@ -3,14 +3,15 @@ performance is critical is in terms of a collection of n+1 files containing ...@@ -3,14 +3,15 @@ performance is critical is in terms of a collection of n+1 files containing
code in the C programming language: n "module" files with a ".c" suffix that code in the C programming language: n "module" files with a ".c" suffix that
contain the bodies of C functions and procedures, and one additional shared file contain the bodies of C functions and procedures, and one additional shared file
with a ".h" suffix that contains definitions of global variables and types that with a ".h" suffix that contains definitions of global variables and types that
are used by each of the modules. LDI, short for "logical data integration", is a are used by each of the module files. LDI, short for "logical data integration",
collection of tools that make it possible to define this behavior by first is a collection of tools that make it possible to define this behavior in
substituting the ".h" file with a relational database schema abstracting all another way. First, the ".h" file is replaced with a relational database schema
data relevant to the process or thread, including local heap memory data with that abstracts all data relevant to the process or thread, including local heap
the low level interface defined by the ".h" file, and then second, by appealing memory data with the low level interface defined by the ".h" file. And second,
to a variant of the static embedded SQL protocol coupled with C in coding each each of the ".c" module files is replaced with a ".sql" version in which all
of the n modules as a file with a ".sql" suffix. data manipulation in the bodies of C functions and procedures is re-coded by
using a variant of the static embedded SQL protocol.
Note that each of the tools comprising the LDI system define the behavior of Note that each of the tools comprising the LDI system define the behavior of
such a process or thread, and are therefore also coded in this manner. Thus, the such a process or thread, and are therefore also coded in this manner. Thus, the
tools themselves also constitute important benchmarks for their own evaluation. tools themselves also constitute important benchmarks for their own evaluation.
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment