Giter VIP home page Giter VIP logo

Comments (5)

gousiosg avatar gousiosg commented on August 29, 2024

I am not sure why you need to create an intermediate view. What is wrong with a simple join?

select e.src, e.target 
   from edges e 
    join callables c on e.src = c.id
    join modules m on m.id = c.module_id 
....
--- other join conditions

If you want to get the callables for 2 edges (not just the edge ids), then it is 2 joins

select c1.fasten_uri, c2.fasten_uri 
   from edges e
    join callables c1 on e.src = c1.id
    join callables c2 on e.target = c2.id
    join modules m on m.id = c1.module_id 
....

with the appropriate indices in place (and given enough memory) it should not be too slow

from fasten.

ilyagrishkov avatar ilyagrishkov commented on August 29, 2024

@gousiosg Are there any reasons why we wouldn't use graph database for it?

from fasten.

gousiosg avatar gousiosg commented on August 29, 2024

Yes, the graph DB only contains ids, which will need to be resolved against the callables table as well

from fasten.

gousiosg avatar gousiosg commented on August 29, 2024

I mean let's first try the simple solution and see if it works and then we can think of more elaborate schemes

from fasten.

marcomicera avatar marcomicera commented on August 29, 2024

I am not sure why you need to create an intermediate view. What is wrong with a simple join?

Nothing, my bad. Sorry for not seeing the already-existing multicolumn B-Tree index on edges.source_id and edges.target_id. If the response body is correct (edges.*), then a single join will do the job. Sorry for the hassle.

from fasten.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.