Why do you need Kafka, Redis, Mongo, AND Postgres? Arguably it could all be done with Postgres or Redis: both have great pubsub implementations. But what could you possibly need two databases for and a queue implementation alongside a popular backend for queues? I don't mean to criticize, but the complexity of this is what I'd expect for something handling hundreds if not thousands of qps. Even then I'd expect you co…
[flagged]
Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
31–40 of 59 posts
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#32I actually made something similar where you can add likes and reviews to any URL. It’s at voterr.io but I never really focused on trying to make it take off
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#33So, Digg?
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#34For me, this looks like it's useful for those wanting to create a new Reddit or similar style site. It removes the need to build a scalable upvote system.
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#35It seems very clear to me that many of these sharks have never tried to implement a similar system.
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#36Why do you need Kafka, Redis, Mongo, AND Postgres? Arguably it could all be done with Postgres or Redis: both have great pubsub implementations. But what could you possibly need two databases for and a queue implementation alongside a popular backend for queues? I don't mean to criticize, but the complexity of this is what I'd expect for something handling hundreds if not thousands of qps. Even then I'd expect you co…
[flagged]
pg_dump --schema-only --table=tablename databasenameRe: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#37Why do you need Kafka, Redis, Mongo, AND Postgres? Arguably it could all be done with Postgres or Redis: both have great pubsub implementations. But what could you possibly need two databases for and a queue implementation alongside a popular backend for queues? I don't mean to criticize, but the complexity of this is what I'd expect for something handling hundreds if not thousands of qps. Even then I'd expect you co…
[flagged]
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#38Unless you're only running one instance of this, it probably makes sense to scale back immediately otherwise your costs are going to balloon. Even then the horizontal scaling requirements of some of the "parallel" subsystems will get incredibly expensive fast.
Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#39Re: Show HN: Clickvote – Open-source upvotes, likes, and reviews to any context
#40I've been looking for something to integrate in my site that just lets unauthed users to add upvotes, downvotes, and maybe some extra ones like 'recommend' or a few general ones like 'cat/dog'. Dont need any alaytics or extras. Are there any recommended good self-hosted alternatives? This looks nice but requires quite the stack of services.