Ok so your characterset is 26+26+10 = 62 characters (remember CompSci 101, 1 character = 1 byte [8 bits]).You want words of length 8-15 (we'll assume inclusive).
Lets do some simple math.
For your 8 character dictionary expect:
62^8 = 2.18340106 × 10^14 Bytes or ~198.58 TeraBytes
For your 9 character dictionary expect:
62^9 = 1.35370865 × 10^16 Bytes or
~ 12,311.91 TeraBytes
etc.
I doubt you can even store the 8 character dictionary file(s).
Oh you were nice your alphanum list didn't include caps :)
36^8 = 2,821,109,907,456 Bytes or 2.57 TeraBytes (might be able to store that but I still doubt it). [Forget about 9 thru 15 length]