User contributions for Carli
Jump to navigation
Jump to search
19 December 2024
- 21:4221:42, 19 December 2024 diff hist +33 Main Page →Introduction Tag: Visual edit
10 December 2024
- 20:3320:33, 10 December 2024 diff hist +2,992 N MemCP for Microservices Created page with "MemCP is a neat database to implement microservices. Here's a code example for a simple key value store: →microservice democase: a simple key value store with prepared statements: (import "../lib/sql-parser.scm") (import "../lib/queryplan.scm") →initialize database and prepare sql statements: (createdatabase "keyvalue" true) (eval (parse_sql "keyvalue" "CREATE TABLE IF NOT EXISTS kv(key TEXT, value TEXT, UNIQUE KEY PRIMARY(key))")) (set item_get (par..." current Tag: Visual edit
- 20:0820:08, 10 December 2024 diff hist +29 Main Page →Custom Frontends Tag: Visual edit
20 November 2024
- 21:3121:31, 20 November 2024 diff hist +53 MemCP Console No edit summary current Tag: Visual edit
- 20:1420:14, 20 November 2024 diff hist +19 Main Page →Administration Tag: Visual edit
- 20:0120:01, 20 November 2024 diff hist +498 N MemCP Console Created page with "There are two ways to access MemCP Scheme Console: a) if you run <code>memcp</code>in the console, just type in your scheme commands b) if you run <code>memcp</code>in docker or pm2 where you don't have access to the console, open a MySQL connection and type <code>SET syntax = 'scheme';</code>and then type in your commands followed by <code>;.</code> In option b) it might be that some commands like (help) output to memcp console instead of your mysql shell. So better..." Tag: Visual edit
- 19:3819:38, 20 November 2024 diff hist −82 Current Status and Open Issues →Scheme language current Tag: Visual edit
- 19:3319:33, 20 November 2024 diff hist +18 Migration from MySQL and PostgreSQL No edit summary current Tag: Visual edit
- 19:3119:31, 20 November 2024 diff hist +37 Migration from MySQL and PostgreSQL →Connection to MemCP from PostgreSQL Tag: Visual edit
- 19:2719:27, 20 November 2024 diff hist +3 What is OLTP and OLAP →See also current Tag: Visual edit
- 19:2319:23, 20 November 2024 diff hist +31 Deployment No edit summary current Tag: Visual edit
- 19:2219:22, 20 November 2024 diff hist +138 Deployment No edit summary Tag: Visual edit
- 19:2019:20, 20 November 2024 diff hist +43 Migration from MySQL and PostgreSQL No edit summary Tag: Visual edit
- 19:1919:19, 20 November 2024 diff hist −28 Migration from MySQL and PostgreSQL →Connection to MemCP from PostgreSQL Tag: Visual edit
- 19:1919:19, 20 November 2024 diff hist +1 Migration from MySQL and PostgreSQL →Connection to MemCP from PostgreSQL Tag: Visual edit
- 19:1819:18, 20 November 2024 diff hist +280 Migration from MySQL and PostgreSQL →Connection to MemCP via MySQL Connector Tag: Visual edit
- 19:1519:15, 20 November 2024 diff hist +873 N Migration from MySQL and PostgreSQL Created page with "thumb|none|640x640px ===Connection to MemCP via MySQL Connector=== MemCP can be connected with any compatible MySQL connector: $db = new \PDO<code>"mysql:host=localhost;port=3307;dbname=system", 'root', 'admin');</code> echo $db->query("SELECT 'it works'")->fetchColumn(); // outouts: it works ===Import data from MySQL and PostgreSQL=== To import data from MySQL into MemCP, you have to perform the following command in<code>memcp</code>console: (l..." Tag: Visual edit
- 19:1119:11, 20 November 2024 diff hist +330 SQL over REST No edit summary current Tag: Visual edit
- 19:1019:10, 20 November 2024 diff hist −30 Main Page →SQL Frontend Tag: Visual edit
- 19:0919:09, 20 November 2024 diff hist +42 Main Page →Navigation Tag: Visual edit
19 November 2024
- 19:1019:10, 19 November 2024 diff hist +891 N Deployment Created page with "MemCP is relatively easy to deploy. It only requires minimal system requirements (some 10-20 Megabytes of RAM for the base system). There are two deployment methods: === Deployment via pm2 (preferred) === To run memcp, just follow these commands: git clone https://github.com/launix-de/memcp cd memcp go get make # make sure, go is installed pm2 start ./memcp -data ./data/ # use a different path than ./data if you wish; install pm2 If you want to update memcp, just r..." Tag: Visual edit
- 19:0219:02, 19 November 2024 diff hist +17 Main Page →Navigation Tag: Visual edit
31 October 2024
- 11:3711:37, 31 October 2024 diff hist +2 Main Page →What is memcp? Tag: Visual edit
- 11:3611:36, 31 October 2024 diff hist 0 Main Page No edit summary Tag: Visual edit
- 11:3411:34, 31 October 2024 diff hist −38 Main Page No edit summary Tag: Visual edit
- 11:3211:32, 31 October 2024 diff hist +14 Main Page No edit summary Tag: Visual edit: Switched
- 11:3111:31, 31 October 2024 diff hist +6 Main Page No edit summary Tag: Visual edit
- 11:3111:31, 31 October 2024 diff hist −11 Main Page No edit summary Tag: Visual edit
- 11:3011:30, 31 October 2024 diff hist −14 Main Page No edit summary Tag: Visual edit
- 11:3011:30, 31 October 2024 diff hist −32 Main Page →What is memcp? Tag: Visual edit
- 11:2711:27, 31 October 2024 diff hist −11 Main Page No edit summary Tag: Visual edit
- 11:2711:27, 31 October 2024 diff hist 0 N File:Webapps.svg No edit summary current
- 11:2311:23, 31 October 2024 diff hist 0 N File:Webapps with MemCP.svg No edit summary current
- 11:2211:22, 31 October 2024 diff hist −6 Main Page No edit summary Tag: Visual edit
- 11:1911:19, 31 October 2024 diff hist +11 Main Page No edit summary Tag: Visual edit
- 11:0411:04, 31 October 2024 diff hist +61 N File:Ports.svg No edit summary current
- 10:5510:55, 31 October 2024 diff hist +32 Main Page No edit summary Tag: Visual edit
- 10:5510:55, 31 October 2024 diff hist +71 N File:MemCP Port.png No edit summary current
- 10:5110:51, 31 October 2024 diff hist +6 Main Page No edit summary Tag: Visual edit
- 10:4910:49, 31 October 2024 diff hist −8 Main Page No edit summary Tag: Visual edit
- 10:4810:48, 31 October 2024 diff hist +71 N File:Webapps.png No edit summary current
8 October 2024
- 22:2622:26, 8 October 2024 diff hist +44 Websockets in MemCP →Complex Example current Tag: Visual edit
- 22:2322:23, 8 October 2024 diff hist +59 Persistency and Performance Guarantees →Performance Guarantees Tag: Visual edit
- 22:2222:22, 8 October 2024 diff hist −1 Persistency and Performance Guarantees No edit summary Tag: Visual edit
- 22:2122:21, 8 October 2024 diff hist +250 Persistency and Performance Guarantees →Performance Guarantees Tag: Visual edit
- 22:1822:18, 8 October 2024 diff hist +161 Persistency and Performance Guarantees →Persistency Guarantees Tag: Visual edit
- 22:1622:16, 8 October 2024 diff hist +88 Persistency and Performance Guarantees →ENGINE = safe Tag: Visual edit
- 22:1422:14, 8 October 2024 diff hist +52 Persistency and Performance Guarantees →ENGINE = sloppy Tag: Visual edit
- 22:1322:13, 8 October 2024 diff hist +679 Websockets in MemCP No edit summary Tag: Visual edit
- 22:0722:07, 8 October 2024 diff hist +29 Websockets in MemCP →Example Code Tag: Visual edit