68

");drop table rants;--

Comments
  • 14
    Worth a try at least.
  • 11
    That explains my missing Rants.....
  • 8
    @Supernerd I'm just using my penetration test skills.
  • 11
    There ain't no tables here
  • 5
    iirc devrant is based on nosql for the content @dfox
  • 2
    @azous I also think this. All the rants are in memory, once the server get restarted the rants gone.
  • 5
    They use neo4j + elasticsearch

    @math-silva @JoshBent
  • 1
    @math-silva every in memory database has either a full replay feature, a interval backup or both.
  • 0
  • 0
    More like db.dropDatabase() but to be effective mv / dev/null
  • 0
    atleast you tried 😙😁😁
  • 1
    @azous I've recently found neo4j, if I may ask, how good is it ?
  • 10
    Related
  • 0
    @DarKneT A bit more complex to work with than SQL, but extremely powerful. Graphs are a very natural way to represent objects and relationships between them.

    Imagine a User table in SQL. Now your boss wants to save family membership in the database. A is the son of B, B is the uncle of C, B got remarried so D is half-sister to A, etc.

    Representing that in SQL is awkward. You could easily make a pivot table from user to user, with labels. But database level constraints and query efficiency can get difficult... especially once your boss starts asking questions like "how strong is the correlation between family relation distance and movie genre preference" or "through which chains of family members is A related to distant relative X"?

    Graph databases are amazing for answering complex questions about relations between objects. Not just human relationships... purchased products, liked articles, etc

    For devrant, this probably makes content sorting much easier, based on earlier ++s.
Add Comment