Document database backed by keyvalue storage P&L: -7 (≃ -62 USD)
I am interested in database technology and distributed systems.
I have an experimental python project which is less than 1000 lines and supports basic SQL and SQL inner joins and basic Cypher graph database queries and keyvalue storage. There is no persistence layer.
On the linked website page from this project which is GitHub issues I am talking how I plan to implement document storage so that JSON documents can be mapped to individual keys and joined with SQL queries.
Keletą valandų praleidau dirbdamas su likusia šios problemos dalimi, o baigęs išsaugoti dokumentą pradėjau dirbti su dokumentų gavimu.
Tai leidžia išsaugoti ir gauti JSON dokumentus
Įterptus dokumento duomenis taip pat galima užklausti naudojant SQL.
Sujungimai su dokumentais dar nepalaikomi, bet planuoju tai įgyvendinti.
I spent a few hours working on the remainder of this problem and got documnent retrieval working after finishing save document.
This lets you save and retrieve JSON documents
The document data inserted is also queryable by SQL.
Joins against documents are not yet supported but I plan to implement this.
Man pavyko išsaugoti JSON dokumentą ir dokumentui įterpti naudojau SQL įterpiklį. Teoriškai objekto užklausą galima atlikti naudojant SQL
{
"elementai": [("pavadinimas": "1 prekė"), ("pavadinimas": "2 prekė")],
"subobject": {"subobject_key": "value"} }
I managed to store a JSON document and I used the SQL inserter to insert the document. In theory the object is queryable by SQL
{ "items": [("name": "item1"), ("name": "item2")], "subobject": {"subobject_key": "value"} }
⬜️ JSON dokumentą reikia susieti su skaičiais, kad „dokumento ID 0 pomėgiai[0].name=sam“ taptų 0@0.0=sam. Tai leidžia efektyviai gauti duomenis nuskaitant raktų diapazoną tarp skaičių. ⬜️Reikia parašyti kodą, kad skaičiai vėl virstų laukų pavadinimais ⬜️reikia integruoti klavišų erdvės optimizavimo priemonę, nes pertvarkome skaičius, kad sujungimai būtų efektyvūs sąrašuose, pvz., document 0 = {"hobbies":{("vardas": "Dievas"),{"vardas": "duomenų bazės"), {" pavadinimas": "kompiuteriai")}) pomėgiai gali būti 0, pavadinimas gali būti 1 ir mes turime 3 sąrašo elementus 0, 1, 2 norime, kad visi tos pačios rūšies sąrašo indeksai būtų greta rūšiavimo iteratoriuje, todėl juos apverčiame iki galo, todėl 0@0[1]="Dievas" tampa 0@1.0, 0@1.1 0@1.2 ⬜️ Reikia sukurti raktines reikšmes, kurios naudojamos SQL sujungimams ⬜️ reikia sukurti dokumentą, kuris apibrėžia sujungimus, kuriuos žmonės tikisi atlikti JSON dokumente
⬜️ need to map a JSON document to numbers so "document id 0 hobbies[0].name=sam" becomes 0@0.1=sam" this allows for efficient retrievals by scanning a range of keys between numbers. ⬜️need to write code to turn numbers back into field names ⬜️need to integrate keyspace optimiser, as we reorder numbers for efficiency of joins across lists for example document 0 = {"hobbies":{("name": "God"),{"name": "databases"), {"name": "computers")}) hobbies might be 0, name might be 1 and we have 3 list items 0, 1, 2 we want all list indexes of the same kind to be adjacent in the sort iterator, so we flip them to the end so 0@0[1]="God" becomes 0@1.0, 0@1.1 0@1.2 ⬜️ need to create keyvalues for what is used for SQL joins ⬜️ need to create a document which defines the joins that people expect to do on a JSON document
Šiuo metu esu projektavimo etape. Ieškau efektyvaus požiūrio į struktūrinius sujungimus ir efektyvų kolekcijų atitikimo raktų nuskaitymą.
I am currently in design phase. I am looking for an efficient approach to structured joins and scanning matching keys of collections efficiently.
Puiku, kad pradėjote projektą, [chronologiškai]! Labai įdomu. Aš giliai pasinersiu į jūsų mintis apie įgyvendinimą ir kodą. Galbūt čia taip pat galime pakviesti žmones, kurie domisi ar dirba su susijusiomis technologijomis.
Great you starting a project, [chronological]! Very interesting. I'll have a deep dive into your thoughts of implementation and code. Perhaps we can also invite here people interested or working on related technology.