Replies: 1 comment 1 reply
-
Hi @Heachy So first of all Polypheny is a full-fledged DBMS like any other DBMS available. This means that you can connect any application and utilize Polypheny as a DB using the provided interfaces. So no mere middleware at all. Polypheny however allows to further attach existing Since Polypheny keeps track on which stores data is located, querying such an entity enables Polypheny to identify the best possible route for the query to retrieve the desired data with the most optimal estimated response time. This brings me to a core functionality of the system. Finally Polypheny can attach multiple Regarding the Repos: The Web Socket you described is simply the capability of the UI to interact with the DB itself. The main interaction with the DB is always via the provided interfaces. Regarding additional reads you can consult our official docs page and read through the Hope that helped to get a better understanding about Polypheny. |
Beta Was this translation helpful? Give feedback.
-
The following is my understanding of Polypheny-DB, and I hope to receive guidance and corrections.
In my opinion, Polypheny-DB belongs to middleware. Store the connection information of the database table in the local DB, and perform corresponding queries when querying the table. If you query a CSV or Excel file, the corresponding file will be copied to the data file directory.
When the project starts, the directory structure information will be read from mapDB and cached in the corresponding variables to facilitate querying. Polypheny-DB also provides some interfaces to provide corresponding services for use by other applications, such as Polypheny-UI, etc.
Many adapters are provided to facilitate interaction with corresponding data files. It also provides some monitoring functions to better collect the required data information and respond to the data.
Use sql to query the corresponding table data information. But I want to know why we need to use websocket links to query data. There is nothing special about the information sent to the websocket when querying data. So what is the difference between doing this and providing an interface?
The above should be what I learned by using Polypheny-DB and reading its source code. I don’t know if there is a detailed document or a better place to suggest me to study it. I hope I can gain something from it. Please correct me if anything is wrong.
Beta Was this translation helpful? Give feedback.
All reactions