Framework Ultimatum: A Lean and Efficient Zero-Dependency Web Framework for Perl
Find a file
Yorhel 166744dd51 pg: Rework txn implementation + statement config API
I liked the Perl implementation of transactions, but managing state
between Perl and C is a bit cumbersome, so I've moved the whole thing
into C.

Also added a few statement configuration methods that currently don't do
anything yet.
2025-02-07 18:30:36 +01:00
c pg: Rework txn implementation + statement config API 2025-02-07 18:30:36 +01:00
FU pg: Rework txn implementation + statement config API 2025-02-07 18:30:36 +01:00
t pg: Rework txn implementation + statement config API 2025-02-07 18:30:36 +01:00
.gitignore Init 2025-01-26 15:32:47 +01:00
bench.PL Add some tests and move some docs 2025-02-01 07:00:09 +01:00
FU.pm Add some tests and move some docs 2025-02-01 07:00:09 +01:00
FU.xs pg: Rework txn implementation + statement config API 2025-02-07 18:30:36 +01:00
Makefile.PL pg: Rework txn implementation + statement config API 2025-02-07 18:30:36 +01:00
MANIFEST.SKIP jsonfmt: Fix threading support + memory leak bug 2025-01-28 19:20:46 +01:00
README.md pg: Adventures in writing a new postgresql client 2025-02-02 16:22:15 +01:00

FU - Framework Ultimatum

WIP.

Contributing: Refer to my [contribution guidelines)[https://dev.yorhel.nl/contributing].

Build & Install

perl Makefile.PL
make
make install

Project ideas

Things that may or may not happen:

  • FU - The website framework, taking inspiration from TUWF.
  • FU::HTTPServer / FU::FastCGI - Minimal libs to support the web framework.
  • FU::JSON - JSON::{XS,PP,etc}-compatible wrapper around FU::Util's JSON functions? I prolly won't need this myself, but could be handy.
  • FU::Log - Basic logger.
  • FU::Util additions: uri_escape, VNDB::Util::query_encode, scrypt, urandom.
  • FU::Validate - TUWF::Validate & normalization with some improvements.
  • FU::XML - TUWF::XMLXS with some improvements.