pgfe VS taopq

Compare pgfe vs taopq and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pgfe taopq
1 2
159 258
- 0.8%
4.8 8.6
about 1 month ago 13 days ago
C++ C++
Apache License 2.0 Boost Software License 1.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pgfe

Posts with mentions or reviews of pgfe. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-25.
  • The Lisp Curse
    11 projects | news.ycombinator.com | 25 Mar 2022
    I like working in C++, after a decade of working in Java, Python, Javascript and Clojure, I find working in C++ (which I learned before these other languages) to be quite fun and pleasant, at least with relatively modern C++.

    I've been, on and off, working on a little toy game engine, for a few years. Its a mix of keeping up with C++ advancements, learning various concepts like physically based rendering, and just the fun of crafting a big project, with no constraints other than my time and ability, no deadlines, no expectation of releasing anything. Its cathartic and enjoyable. I really do enjoy it.

    Last September, I got frustrated with something I was working on in a more serious capacity. It was some server software, it responded to HTTP requests, it accessed third party services over HTTP and Websockets, it talked to a Postgres database. Overall it was an event driven system that transformed data and generated actions that would be applied by talking to third party services. The "real" version was written in Clojure and it worked pretty well. I really like Clojure, so all good.

    But because I was frustrated with some things about how it ran and the resources it took up, I wondered what it would be like if I developed a little lean-and-mean version in C++. So I gave it a try as a side project for a few weeks. I used doctest[1] for testing, immer[2] for Clojure-like immutable data structures, [3] lager for Elm-like application state and logic management, Crow[4] for my HTTP server, ASIO[5] and websocketpp[6] for Websockets, cpp-httplib[7] as a HTTP client and PGFE[8] for Postgres, amongst some other little utility libraries. I also wrote it in a Literate Programming style using Entangled[9], which helped me keep everything well documented and explained.

    For the most part, it worked pretty well. Using immer and lager helped keep the logic safe and to the point. The application started and ran very quickly and used very little cpu or memory. However, as the complexity grew, especially when using template heavy libraries like lager, or dealing with complex things like ASIO, it became very frustrating to deal with errors. Template errors even on clang became incomprehensible and segmentation faults when something wasn't quite right became pretty hard to diagnose. I had neither of these problems working on my game engine, but both became issues on this experiment. After a few weeks, I gave up on it. I do think I could have made it work and definitely could go back and simplify some of the decisions I made to make it more manageable, but ultimately, it was more work than I had free time to dedicate to it.

    So my experience was that, yes, you can write high level application logic for HTTP web backends in C++. You can even use tools like immer or lager to make it feel very functional-programming in style and make the application logic really clean. Its not hard to make it run efficiently both in terms of running time and memory usage, certainly when comparing to Clojure or Python. However, I found that over all, it just wasn't as easy or productive as either of those languages and I spent more time fighting the language deficiencies, even with modern C++, than I do when using Clojure or Python.

    I think I would think very long and hard before seriously considering writing a web backend in C++. If I had the time, I'd love to retry the experiment but using Rust, to see how it compares.

    [1] https://github.com/doctest/doctest

    [2] https://github.com/arximboldi/immer

    [3] https://github.com/arximboldi/lager

    [4] https://github.com/CrowCpp/crow

    [5] https://think-async.com/Asio/

    [6] https://www.zaphoyd.com/projects/websocketpp/

    [7] https://github.com/yhirose/cpp-httplib

    [8] https://github.com/dmitigr/pgfe

    [9] https://entangled.github.io/

taopq

Posts with mentions or reviews of taopq. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-12.
  • Please advise a library for interacting with databases in C++
    1 project | /r/cpp_questions | 23 Sep 2022
    Anyway, you can just type "C++ database name" in your search engine and find adapters. For example for postgres: https://github.com/taocpp/taopq
  • How do I add this third-party library to my project?
    3 projects | /r/cpp_questions | 12 Jun 2022
    However the library taopq, a client for the PostgreSQL database engine, is a bit confusing to me. It doesn't specify if all I need to do is add the include folder to my project. The installation section of the docs just mentions the Conan package manager, which I don't want to use just for one library. It also seems like I would need to build a C binary for one of taopq's dependencies.

What are some alternatives?

When comparing pgfe and taopq you can also consider the following projects:

lager - C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++

ozo - OZO is a C++17 Boost.Asio based header-only library for asyncronous communication with PostgreSQL DBMS.

immer - Postmodern immutable and persistent data structures for C++ — value semantics at scale

pqpp - Simple PostgreSQL bindings for modern C++

Seastar - High performance server-side application framework

QxOrm - QxOrm library - C++ Qt ORM (Object Relational Mapping) and ODM (Object Document Mapper) library - Official repository

cpp-httplib - A C++ header-only HTTP/HTTPS server and client library

cmake-init - The missing CMake project initializer

Boost.Asio - Asio C++ Library

TreeFrog Framework - TreeFrog Framework : High-speed C++ MVC Framework for Web Application

factor - Factor programming language

doctest - The fastest feature-rich C++11/14/17/20/23 single-header testing framework