User contributions for Carli
Jump to navigation
Jump to search
8 October 2024
- 23:2223:22, 8 October 2024 diff hist −1 Persistency and Performance Guarantees No edit summary Tag: Visual edit
- 23:2123:21, 8 October 2024 diff hist +250 Persistency and Performance Guarantees →Performance Guarantees Tag: Visual edit
- 23:1823:18, 8 October 2024 diff hist +161 Persistency and Performance Guarantees →Persistency Guarantees Tag: Visual edit
- 23:1623:16, 8 October 2024 diff hist +88 Persistency and Performance Guarantees →ENGINE = safe Tag: Visual edit
- 23:1423:14, 8 October 2024 diff hist +52 Persistency and Performance Guarantees →ENGINE = sloppy Tag: Visual edit
- 23:1323:13, 8 October 2024 diff hist +679 Websockets in MemCP No edit summary Tag: Visual edit
- 23:0723:07, 8 October 2024 diff hist +29 Websockets in MemCP →Example Code Tag: Visual edit
- 23:0623:06, 8 October 2024 diff hist +1,175 Websockets in MemCP No edit summary Tag: Visual edit
- 22:5422:54, 8 October 2024 diff hist +57 In-Database WebApps and REST Services →Example WebApps current Tag: Visual edit
- 22:5422:54, 8 October 2024 diff hist +4,916 N Websockets in MemCP Created page with "In MemCP, you can call <code>(set send ((res "websocket") onReceiveFunction onCloseFunction))</code>to upgrade a http session into a websocket (<code>res</code> is the response object from your http handler, see serve). The <code>onReceiveFunction</code> will take message as it's parameter. <code>onCloseFunction</code> will be called when the socket is closed. You can call <code>(send 1 "my message")</code> to send a string to th..." Tag: Visual edit
- 22:4622:46, 8 October 2024 diff hist +26 Main Page →Custom Frontends Tag: Visual edit
- 22:4522:45, 8 October 2024 diff hist 0 History of the MemCP project No edit summary current Tag: Visual edit
- 22:4522:45, 8 October 2024 diff hist +95 History of the MemCP project No edit summary Tag: Visual edit
15 June 2024
- 14:3014:30, 15 June 2024 diff hist 0 Main Page →What is memcp? Tag: Visual edit
- 14:3014:30, 15 June 2024 diff hist 0 Main Page →What is memcp? Tag: Visual edit
- 14:2914:29, 15 June 2024 diff hist 0 Main Page →What is memcp? Tag: Visual edit
- 14:2814:28, 15 June 2024 diff hist +10 Main Page →What is memcp? Tag: Visual edit
3 June 2024
- 07:3907:39, 3 June 2024 diff hist +34 Main Page →What is memcp? Tag: Visual edit
- 07:3807:38, 3 June 2024 diff hist +32 N File:Explainer.png No edit summary current
30 May 2024
- 10:1510:15, 30 May 2024 diff hist −116 Current Status and Open Issues No edit summary Tag: Visual edit
28 May 2024
- 21:2521:25, 28 May 2024 diff hist −6 Database Tools compatibility with MemCP →DBeaver current Tag: Visual edit
- 07:0707:07, 28 May 2024 diff hist +272 Scan No edit summary current Tag: Visual edit
27 May 2024
- 09:1909:19, 27 May 2024 diff hist −61 Current Status and Open Issues →Scheme language Tag: Visual edit
- 08:0208:02, 27 May 2024 diff hist +92 Contributing No edit summary current Tag: Visual edit
26 May 2024
- 14:2014:20, 26 May 2024 diff hist +255 N Advanced Graph Querying Created page with "== Property Paths == see also: https://en.wikibooks.org/wiki/SPARQL/Property_paths TODO for MemCP: * property/propertypath * propertypath*, propertypath+ (mark&sweep, then iterate over the results) * property? * (propertypath) * ^property (inverse path)" current Tag: Visual edit
- 13:4713:47, 26 May 2024 diff hist +30 Main Page →RDF Frontend Tag: Visual edit
20 May 2024
- 14:1214:12, 20 May 2024 diff hist +222 N Contributing Created page with "Here's how you can contribute: * Go to https://github.com/launix-de/memcp * Build From Source * Add unit tests * Implement more SQL Syntax * Find and report Bugs * Add Passes to the Optimizer" Tag: Visual edit
- 14:0414:04, 20 May 2024 diff hist +119 Database Tools compatibility with MemCP →VSCode SQLTools Tag: Visual edit
- 14:0314:03, 20 May 2024 diff hist +131 Database Tools compatibility with MemCP No edit summary Tag: Visual edit
- 14:0214:02, 20 May 2024 diff hist +126 N Database Tools compatibility with MemCP Created page with "== PHPMyAdmin == no support yet. Read more under: Contributing == DBeaver == Support for: * List Databases * List Tables" Tag: Visual edit
- 14:0114:01, 20 May 2024 diff hist +19 Main Page →Getting Started Tag: Visual edit
- 13:2513:25, 20 May 2024 diff hist +2,363 Data Auto Sharding and Auto Indexing →Auto-Indexing current Tag: Visual edit
- 13:0413:04, 20 May 2024 diff hist +222 Scan →(scan_order schema table filterColumn filter sortcols sortdirs offset limit mapColumns map reduce neutral isOuter) Tag: Visual edit
- 13:0213:02, 20 May 2024 diff hist +984 Scan No edit summary Tag: Visual edit
- 12:5412:54, 20 May 2024 diff hist +4,903 N Scan Created page with "Scan is the most important function in whole MemCP. It implements an optimized, indexed and parallelized <code>for</code> loop over items in a table. There are two variants of scan: <code>scan</code> and <code>scan_order</code>. == (scan schema table filterColumns filter mapColumns map reduce neutral reduce2 isOuter) == Help for: scan === does an unordered parallel filter-map-reduce pass on a single table and returns the reduced result Allowed nø of parameters..." Tag: Visual edit
- 12:5012:50, 20 May 2024 diff hist +292 Settings No edit summary current Tag: Visual edit
- 12:4112:41, 20 May 2024 diff hist +171 Advanced SQL Tutorial →Atomic Counters through Unique Key Checks current Tag: Visual edit
- 12:4112:41, 20 May 2024 diff hist +40 N Data Auto Sharding and Auto Indexing Created page with "== Auto-Indexing == == Auto-Sharding ==" Tag: Visual edit
- 11:5511:55, 20 May 2024 diff hist +661 N Advanced SQL Tutorial Created page with "== Atomic Counters through Unique Key Checks == Imagine the following table: CREATE TABLE u(id INT PRIMARY KEY, cnt INT); INSERT INTO u VALUES (1, 2), (2, 4); SELECT * FROM u; +------+------+ | id | cnt | +------+------+ | 1 | 2 | | 2 | 4 | +------+------+ '''3 rows in set (0,001 sec)''' If you want to add to <code>cnt</code> whenever an event occurs, add a unique key over <code>id</code> and do the following: INSERT INTO u VALUES (2, 1) O..." Tag: Visual edit
- 11:4511:45, 20 May 2024 diff hist +28 Main Page →SQL Frontend Tag: Visual edit
19 May 2024
- 21:2721:27, 19 May 2024 diff hist +17 Supported SQL →Expressions current Tag: Visual edit
- 17:2617:26, 19 May 2024 diff hist +74 Supported SQL No edit summary Tag: Visual edit
- 16:2116:21, 19 May 2024 diff hist +13 Main Page →Features Tags: Reverted Visual edit
- 16:2016:20, 19 May 2024 diff hist +32 Main Page No edit summary Tag: Visual edit: Switched
- 15:4615:46, 19 May 2024 diff hist 0 Main Page →Custom Frontends Tag: Visual edit
- 15:4615:46, 19 May 2024 diff hist +51 N In-Database WebApps Carli moved page In-Database WebApps to In-Database WebApps and REST Services current Tag: New redirect
- 15:4615:46, 19 May 2024 diff hist 0 m In-Database WebApps and REST Services Carli moved page In-Database WebApps to In-Database WebApps and REST Services
- 15:4615:46, 19 May 2024 diff hist +38 Main Page →Custom Frontends Tag: Visual edit
- 15:4415:44, 19 May 2024 diff hist 0 In-Database WebApps and REST Services →Including SQL or RDF queries in your custom REST endpoint Tag: Visual edit
- 11:0811:08, 19 May 2024 diff hist +2,689 N In-Database WebApps and REST Services Created page with "In-Database WebApps are a huge game changer in REST API performance since the web app runs in the same context as the == REST Endpoint setup == You basically set up a REST endpoint by overwriting the <code>http_handler</code> variable in the global scope. Best practice is here to overload http_handler, store the old handler in <code>old_handler</code> and cascade the router with a prefix: (define http_handler (begin (set old_handler (coalesce http_handler han..." Tag: Visual edit