• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[#Red] Red language group

Kaj
26-Sep-2012
[2334]
CGI is based on the same principle. It's supposed to be a gateway 
from a Unix web server to a Unix file system, so you can secure it 
with operating system tools
GrahamC
26-Sep-2012
[2335]
I think you'd run it on your own server ...
Gregg
26-Sep-2012
[2336]
Just skimming this group. Exciting to see so much going on here.
Arnold
27-Sep-2012
[2337]
Adding CGI would be good for online demo's? Well for building web-sites 
too! Finally drop php.
Oldes
27-Sep-2012
[2338]
Aren't you using Doc's Cheyenne server? ;-)
Arnold
27-Sep-2012
[2339x2]
Unfortunately my websitehoster has a plesk system with Apache on 
it. I managed to have REBOL CGI working on it. It will process .r 
.rsp files.
Having more freedom often means to pay more
Kaj
27-Sep-2012
[2341]
Or run your own server
Oldes
28-Sep-2012
[2342]
or local server which generates static content for your public server 
hosting
Kaj
28-Sep-2012
[2343]
I do that, too, but there's no CGI there, then
Pekr
28-Sep-2012
[2344]
Doc, with recent discussions about Unicode, I wonder if we will have 
strong binary type, and myriads of to-* REBOL-like functions for 
various conversions between the types?
DocKimbel
28-Sep-2012
[2345]
Pekr: there's only one TO native, all the to-* functions are just 
handy wrappers. How would you suggest datatype conversions be handled 
instead?
Pekr
28-Sep-2012
[2346]
dunno. Just want to avoid R2 mess with binary vs string conversion, 
etc.
BrianH
28-Sep-2012
[2347]
We did a lot in R3 to clean up binary vs. string conversion. There's 
probably more work to do, but it's a good start.
Pekr
28-Sep-2012
[2348]
I know, so I hope Red follows R3 model :-)
BrianH
28-Sep-2012
[2349]
The one thing R3 was bereft in was custom conversion functions. We 
had some ideas, but for the most part didn't get around to implementing 
them.
Pekr
28-Sep-2012
[2350]
do you mean codecs?
BrianH
28-Sep-2012
[2351]
Well, that too, but I more meant a better replacement for that awkward 
struct! conversion hack in R2.
DanielN
29-Sep-2012
[2352]
Hello, I want to use a local database whith no concurency for aor 
the moment I see ndb indexed btree from Dockimbel, another alternative 
is possible and what ca be used  with the future red ?
Pekr
29-Sep-2012
[2353]
at the moment there is a Red/System binding to SQLite. But that's 
for Red/System. I would probably wait, till higher level Red is more 
feature complete in upcoming 2-3 months ...
DocKimbel
29-Sep-2012
[2354]
Daniel: welcome! The best choice so far would be SQLite for such 
usage. We might reuse lower level parts of SQLite to build our own 
storage system specifically designed for Red.
Pekr
29-Sep-2012
[2355]
Yes, SQLite is a good candidate for that imo. Right licence, relatively 
small, performance is good.
DanielN
29-Sep-2012
[2356]
OK, and also dispo in android I think and bbrerry os...
Pekr
29-Sep-2012
[2357]
well, as for BB 10 - we should get there imo - QNX based, old Amiga 
friends :-) And maybe it is good to support lower market, than crowded 
iOS developer's base? We will see ...
DanielN
29-Sep-2012
[2358]
That will be very good, shure ! :)
DocKimbel
29-Sep-2012
[2359]
We'll spread wherever possible! :-)
BrianH
29-Sep-2012
[2360]
If you're thinking of adapting the lower levels of SQLite for our 
use, start with SQLite 4. It's much better suited for that kind of 
thing.
Kaj
29-Sep-2012
[2361]
What's the status of that?
BrianH
29-Sep-2012
[2362x4]
All I know is here: http://www.sqlite.org/src4/doc/trunk/www/index.wiki
I suspect that it's in alpha. Still, just due to the system structure, 
even an alpha version would be easier to adapt than the stable SQLite 
< 4.
It is structures as a NoSQL-style key/value store with a SQL engine 
on top. We can put our own engine on top.
We might even be able to implement the API that the storage engines 
plug into, which would allow us to use the storage engines unchanged.
DocKimbel
29-Sep-2012
[2366]
Brian: that last shortest path might be the first thing to try.
BrianH
29-Sep-2012
[2367x2]
Agreed. And it will be easier to keep an API clone updated for future 
SQLite changes, so we can get the benefits of future improvements 
to the storage engines.
SQLite already went through the trouble of extracing and abstracting 
their storage engines, so it's best to reuse their work :)
DocKimbel
29-Sep-2012
[2369]
We certainly have better ways to spend your time than debugging SQLite 
internals, so keeping the same SQLite codebase subset seems the right 
thing to do.
Pekr
30-Sep-2012
[2370x2]
Well, what I would like to see is the ability to have one file per 
table, without artificial limits like having to attach databases, 
to some artificial number of 9, or what was the limit. Second - SQLite 
4 to have encryption storage option ....
Also some record level locking would be nice to have ...
BrianH
30-Sep-2012
[2372]
If you want one file per table, pick another engine. For the rest 
of that stuff SQLite is OK.
Pekr
30-Sep-2012
[2373x2]
Yes, it would really help to more easily backup at the file level 
- not just one monstrous file each time, but certain tables ...
there is no other option to SQLite, other embedded databases are 
either not free, or don't use SQL syntax (e.g. mySQL)
BrianH
30-Sep-2012
[2375]
With the SQLite 4 storage engines you don't necessarily even need 
tables at all - it's a key-value store. Even SQLite recreates the 
table metaphor on top.
Pekr
30-Sep-2012
[2376]
big change in their paradigm. And the one, which fits imo REBOL. 
IIRC Carl always wanted some stronger storage option to load/save 
blocks. IIRC Rebin was needed? He once was considering adding SQLite, 
but found it too big. IMO it would be good if we used SQLite for 
Red, to standardise. I doubt we can find more efficient, powerfull, 
and cross-platform tool with the right licence? Of course more efficient 
solution might be done by pure Red facitilities, but unless we need 
really extra efficient solution, why to reinvent the wheel?
DocKimbel
30-Sep-2012
[2377]
The big advantage of SQLite over other similar engines is that it's 
bundled already in the main mobile platforms (Android and iOS).
Kaj
30-Sep-2012
[2378]
MySQL doesn't use SQL syntax?
Pekr
30-Sep-2012
[2379x2]
Kaj - last I checked it was long time ago. It did not use SQL syntax, 
and was not even free IIRC. But I don't follow mySQL for many years 
now ...
Doc - right - that is also important, that the engine is being present 
on such platforms ...
Kaj
30-Sep-2012
[2381]
It was always a GPL SQL database, but people complained it didn't 
support as much as, say, Oracle and PostgreSQL
BrianH
30-Sep-2012
[2382]
Well, if using an unmodified engine that is already installed is 
the goal, SQLite 4 is out.
Kaj
30-Sep-2012
[2383]
Just give it time