Re: [julia-users] Finalizer function not called consistently when ending a julia instance

2016-04-01 Thread Lee Bates
Thanks Tim, My plan is to use the above type as column values in a DataFrame. I want to be able to grow the DataFrame so I intend on making the above type similar to a C++ Vector (has reserve capacity). However, this will result in the file at some stage growing in size. As such I'll need to

Re: [julia-users] Finalizer function not called consistently when ending a julia instance

2016-04-01 Thread Lee Bates
Thanks Tim, My eventual plan is to use the above type as columns in a DataFrame. This will require multiple mmapped vectors to be created. It looks like the Anonymous function creates a file called "", this means you can only use it to mmap an array once at any time.

[julia-users] Finalizer function not called consistently when ending a julia instance

2016-03-31 Thread Lee Bates
Hi, I'm creating a Julia type that conatins a Mmapped Vector. The intention is that the binary file behind the Mmap vector is created when the type is initialised and the file is deleted when the gc knows it's out out of scope. I'm using a finalizer function to achieve the deletion. My code

[julia-users] Re: Distribute a Julia application without exposing the cose

2015-11-09 Thread Lee Bates
> > Hi Palli, > I have taken your advice and started looking at using Escher and a server (and possibly a virtual machine if the user requires the computations are done locally). As for compiling the code; I have managed to compile a julia script that solves an LP using JuMP and Cbc (I

[julia-users] Distribute a Julia application without exposing the cose

2015-11-01 Thread Lee Bates
I'm trying to distribute an application written in Julia without exposing the code. I've tried using build_executable, however when using a Pkg interfacing with code written in another language (Tk, Cbc) the process seems to have errors I'm not capable of resolving. I've also thought of