Displaying 9 results from an estimated 9 matches for "techarticle".
2010 Nov 10
3
using DB2 with Rails 3
I have developed a rails 3 app and for various reasons I have been
compelled to try using DB2 as the underlying database system. Does
anyone have much experience of using DB2 with rails 3? Any good pointers
on resources? I have just been using postgres to date
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on
2006 Jul 02
4
Ruby on Rails + DB2
Received this link from a regular email blast, it may interest some of
you. I guess RoR is starting to gain more traction :-)
http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0606dumbill/?ca=dnw-723
Cheers
Mohit.
2007 May 25
6
IBM Article: DB2 on Rails
I often forward IBM DeveloperWorks articles about RoR to this list.
This is a new well-written ''Intermediate'' article using DB2 with Rails:
http://www.ibm.com/developerworks/db2/library/techarticle/dm-0705chun/
Hope this helps.
Cheers
Mohit.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.g...
2006 May 14
9
IBM UniVerse database adapter for ActiveRecord?
I''m facing a situation where I am going to have to integrate with a
legacy database , specifically the IBM UniVerse database, which is not
*quite* relational. It feels like a holdover from the dark ages of
computing.
Before I attempt writing an ActiveRecord adapter, I''d like to know if
anyone else uses this database and if I''m the only person that needs
this thing. I
2006 Jul 26
7
RHTML in database?
Hi,
is it possible to store RHTML templates or partials in database?
thanks,
Bojan Mihelac
--
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p. | www.informatikamihelac.com
-> tools, scripts, tricks from our code lab: http://source.mihelac.org
2006 Oct 24
15
How to emit associative array after ^C
Boy am I a dummy. I want to simply dump out unfreed allocations when I terminate the script. What''s the secret sauce?
#!/usr/sbin/dtrace -s
pid$1::MyAlloc:return
{
bufs[arg1] = walltimestamp;
}
pid$1::MyFree:entry
/bufs[arg0]/
{
bufs[arg0] = 0;
}
This message posted from opensolaris.org
2008 Jun 09
6
FW: Memory Leak Problem in My Application running on Solaris 10.
...on in Solaris 10 called
> libumem.
> If you link to libumem (just use LD_PRELOAD), it will do heap
management
> out of libumem instead of libc, and libumem offers some very nice
> features
> for chasing memory leaks. You can read how to do this here:
>
> http://access1.sun.com/techarticles/libumem.html
>
> The two WEB sites referenced above speak directly to what you''re
looking
> for, much better than I could so with a long email loaded with
examples.
> ;^)
>
> Hopefully, these tools will help you isolate your memory leak problem.
>
> Thanks,
> /j...
2007 Dec 09
38
libevent
Hello,
I have been looking at the Ruby/EventMachine. First let me say it look very
good. Reactor model with no threads makes for fast reliable server, and I
have read about marvelous Twisted framework for Python and am glad to see
something similar for Ruby.
I am writing network app with Ruby threads now and it very slow, and I try
new Ruby 1.9 with native threads that make it much slower.
2007 Oct 02
53
Direct I/O ability with zfs?
We are using MySQL, and love the idea of using zfs for this. We are used to using Direct I/O to bypass file system caching (let the DB do this). Does this exist for zfs?
This message posted from opensolaris.org