World: r3wp
[!REBOL3-OLD1]
older newer | first last |
amacleod 5-Jan-2009 [9094x2] | I'm having a memor issue too. I have an app that uses a scroll panel that I fill with text and images (a "page"). Each time I change the panel data (the "page") the memory footprint increases. But If I reload a "page" that was previously displayed memory size does not change. I can see if the memory holding the "page" does not clear properly but how does it know that the "page" is already in memory? I'm holding the composed data in a block - page: copy [ composed page data ] and I clear it befrore rebuilding it - page: copy [ ] |
memor = memory | |
Maxim 5-Jan-2009 [9096x2] | as long as you have a single word pointing to data, it stays in ram. so if you re-link it within the face without changing it, all its doing is basically a window refresh. |
did I understand your question correctly? | |
amacleod 5-Jan-2009 [9098] | I'm changing the content (text and images) of the page each time I "show" it in the scroll panel. And each time I "show" a new "page" memory use increases but if I re-"show" a page that was previously viewed memory use does not change significantly. |
Maxim 5-Jan-2009 [9099] | yes that is normal. the GC already has the memory somewhere. you new images probably are being held up by some stray pointer to them. |
Pekr 5-Jan-2009 [9100] | R3 plan for January - http://www.rebol.com/article/0386.html |
Janko 5-Jan-2009 [9101] | I am not very experienced in how making bindings in various scripting languages work but I have fiddled around this a little... python by itself doesn't do anything automatic I think - and to my knowledge python isn't the best example of easy binding to c libs, but there are comunity provided tools that help you generate the interface code etc... most people I saw used SWIG (which works for a lot of languages) http://swig.sourceforge.net/.. but the chat was that if you use that tool you geet quite a bloated code for interface. |
Maxim 5-Jan-2009 [9102] | many people link the stuff on the C side and recompile python itself. |
Janko 5-Jan-2009 [9103x5] | If you want to look for languages that provide very elegant way of making bindings you should to my knowledge look at Lua (lua started with this) , lua provides simple to understand stack approach. Then there is haxe which provides even more elegant way to do this . Both languages also enable to embed the VM/interpreter into C++ app. I have used both to do both and it was very simple as I am not a power low level programmer |
haxe = nekovm (nekovm.org) | |
The most elegant binding I have seen so far was done by Factor .. there you don't even have to "code" in a classical sense, you just define the interface and that's it ... as I said I am not very experienced in all this (I hacked factor's sqlite binding and to add another c function inthere I just added 1 line.) | |
this is a link to nekovm's FFI , pretty simple to use http://nekovm.org/doc/ffi | |
uh, R3 plan... I hope the public alpha will come out soon so I can also start playing with it | |
Graham 6-Jan-2009 [9108] | Rebdev only R3? Or can a R2 client be written? |
Henrik 6-Jan-2009 [9109] | Graham, Carl says an R2 client can be written, but is low priority. |
[unknown: 5] 6-Jan-2009 [9110] | Does anyone know if REBOL3 will include REBCODE functionality? If not, then it would be cool if we could DO rebcode from a REBOL3 script somehow. Such as DO %rebcode.bin to give us the functions of REBCODE to use in our scripts. |
Henrik 6-Jan-2009 [9111] | There is no rebcode in R3 as it would be a different challenge to put it in there than in R2. R2 also offered certain tricks that are not possible in R3, which would make rebcode run slower in R3. BrianH has explained this a few times (but I can never remember the exact explanation :-)). |
[unknown: 5] 6-Jan-2009 [9112x2] | Would be nice to just pass the arguments to a rebcode module and have it pass them back. Even giving rebcode networking features might enable that. |
Henrik, do you know if Carl would be up to building a rebcode based 2.7.6? | |
Henrik 6-Jan-2009 [9114] | Old BrianH quote: The new function binding model in R3 makes Rebcode not as fast in R3 as it was in R2, if it uses the same semantic model. In order to be worth including we would have to change the semantic model accordingly. |
[unknown: 5] 6-Jan-2009 [9115] | I could really benefit from having rebcode in 2.7.6 then. |
Henrik 6-Jan-2009 [9116] | Paul, I don't know. I don't think he wants to spend much time in 2009 on R2. The schedule for R3 is pretty long as it stands. |
[unknown: 5] 6-Jan-2009 [9117x2] | But I would think it would be somethign that he just drops in and compiles isn't it? |
He already has it in 2.6.x? | |
Henrik 6-Jan-2009 [9119] | I don't know that process, so I don't know. :-) |
[unknown: 5] 6-Jan-2009 [9120] | Maybe Brian can provide more insight. |
Henrik 6-Jan-2009 [9121x2] | That's a special build. Also rebcode was never really finished as there are security issues with it. |
(rebcode can easily crash REBOL if used wrong) | |
[unknown: 5] 6-Jan-2009 [9123] | I would use it if it were a separate process that I could access via networking port just to get to the computational advantages. |
Henrik 6-Jan-2009 [9124] | I think you can do that with the special builds. |
[unknown: 5] 6-Jan-2009 [9125x2] | You probably right I didn't think if would have networking or not. |
I'll look into that. | |
Henrik 6-Jan-2009 [9127] | it's a full REBOL/View build, so it should work |
[unknown: 5] 6-Jan-2009 [9128x3] | ahh ok. |
I knew that also but wasn't thinking. | |
Thanks Henrik. | |
Graham 6-Jan-2009 [9131x2] | Is tcp/ip going to be primarily async in R3? Or will there be synchronous protocols also written? |
for http, pop, smtp etc ? | |
Henrik 7-Jan-2009 [9133x2] | I think that TCP/IP is pure async and HTTP also, but functions like READ would work in a synchronous manner. |
On another note, a new R3 internal release was made a few hours ago with all of BrianH's changes submitted to DevBase. Yay! | |
Pekr 7-Jan-2009 [9135x2] | ... yes, and it seems to me we are aproaching the release .... slowly but surely .... http://www.rebol.net/wiki/R3_Alpha |
Still work in progress, but good sign of things happening ... so hopefully, in one month, there will be load of devs cooperating on R3 development ... | |
Steeve 7-Jan-2009 [9137x2] | yeah... something is comming... |
not now plz, i have to go bed... | |
Pekr 7-Jan-2009 [9139x3] | you can watch internal releases here - http://www.rebol.net/wiki/R3_Releases |
:-) | |
don't expect it being out this week ... you can safely go to sleep :-) | |
Steeve 7-Jan-2009 [9142x2] | i saw them early |
i check docbase several times per day ;-) | |
older newer | first last |