Re: [HACKERS] Tips/advice for implementing integrated RESTful HTTP API

2014-09-14 Thread Björn Harrtell
FYI, got an initial implementation of http://wiki.postgresql.org/wiki/HTTP_API done in Java (intended to run as a servlet) at https://github.com/bjornharrtell/jdbc-http-server. Feedback is welcome :) Regards, Björn 2014-09-03 1:19 GMT+02:00 Álvaro Hernández Tortosa a...@nosys.es: On 02/09/14

Re: [HACKERS] Patch: regexp_matches variant returning an array of matching positions

2014-01-29 Thread Björn Harrtell
if there is interest. Perhaps a good name for such a function would be simply regexp_match och regexp_search (as in python). /Björn 2014-01-29 David Johnston pol...@yahoo.com Alvaro Herrera-9 wrote Björn Harrtell wrote: I've written a variant of regexp_matches called regexp_matches_positions

[HACKERS] Patch: regexp_matches variant returning an array of matching positions

2014-01-28 Thread Björn Harrtell
I've written a variant of regexp_matches called regexp_matches_positions which instead of returning matching substrings will return matching positions. I found use of this when processing OCR scanned text and wanted to prioritize matches based on their position. The patch is for discussion. I'd

[HACKERS] HTTP API experimental implementation

2012-07-10 Thread Björn Harrtell
/Björn Harrtell