Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

I have a very small mind and must live with it. -- E. Dijkstra


devel / comp.lang.smalltalk.dolphin / Re: An known size limitation in Win 10 when storing object STB+FileStream

SubjectAuthor
* An known size limitation in Win 10 when storing object STB+FileStreamSanjay Minni
`* Re: An known size limitation in Win 10 when storing object STB+FileStreamjohn.a...@gmail.com
 +- Re: An known size limitation in Win 10 when storing object STB+FileStreamSanjay Minni
 `- Re: An known size limitation in Win 10 when storing object STB+FileStreamSanjay Minni

1
An known size limitation in Win 10 when storing object STB+FileStream

<7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=121&group=comp.lang.smalltalk.dolphin#121

  copy link   Newsgroups: comp.lang.smalltalk.dolphin
X-Received: by 2002:a37:b505:: with SMTP id e5mr12098075qkf.367.1629519146164; Fri, 20 Aug 2021 21:12:26 -0700 (PDT)
X-Received: by 2002:a9d:4d8a:: with SMTP id u10mr13398948otk.21.1629519145762; Fri, 20 Aug 2021 21:12:25 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.smalltalk.dolphin
Date: Fri, 20 Aug 2021 21:12:25 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=171.76.114.65; posting-account=wc7UngoAAABlNyOTTL0vlOzP96a0IeHs
NNTP-Posting-Host: 171.76.114.65
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com>
Subject: An known size limitation in Win 10 when storing object STB+FileStream
From: sanjay.minni@gmail.com (Sanjay Minni)
Injection-Date: Sat, 21 Aug 2021 04:12:26 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 14
 by: Sanjay Minni - Sat, 21 Aug 2021 04:12 UTC

Hi,

using Win 10 and Dolphin 7.1.20 (32 bit off course)

Are there any known limitation when storing Objects serialized into a disk file, like as mentioned in the help example:

S := FileStream write:'Test.STB' text: false.
(STBOutFiler on: S) nextPut: X; S close.

.... I was thinking of the long back Win32 4gb limitation in some cases if relevant.

also is there a way to quickly switch between binary form and some sort of near textual form, of the files stored, just to verify what is being stored. Without disturbing much code

Thanks
Sanjay

Re: An known size limitation in Win 10 when storing object STB+FileStream

<2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=123&group=comp.lang.smalltalk.dolphin#123

  copy link   Newsgroups: comp.lang.smalltalk.dolphin
X-Received: by 2002:ac8:4e48:: with SMTP id e8mr22025823qtw.366.1629547519543;
Sat, 21 Aug 2021 05:05:19 -0700 (PDT)
X-Received: by 2002:a05:6830:1f5a:: with SMTP id u26mr20949732oth.135.1629547519294;
Sat, 21 Aug 2021 05:05:19 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.smalltalk.dolphin
Date: Sat, 21 Aug 2021 05:05:19 -0700 (PDT)
In-Reply-To: <7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=85.203.71.185; posting-account=OQ6sIwoAAAC1iWrFEUhdmRsgEkeDOgOm
NNTP-Posting-Host: 85.203.71.185
References: <7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>
Subject: Re: An known size limitation in Win 10 when storing object STB+FileStream
From: john.aspinall@gmail.com (john.a...@gmail.com)
Injection-Date: Sat, 21 Aug 2021 12:05:19 +0000
Content-Type: text/plain; charset="UTF-8"
 by: john.a...@gmail.com - Sat, 21 Aug 2021 12:05 UTC

Hi Sanjay - I'm not aware of any limits on STB file size beyond the OS file size limit you mention.

Regarding your second question, STON can be used to serialize objects in a text-based format (STON is essentialy a superset of JSON). See the STON-Core package comment for more details.

Regards,

John Aspinall

On Saturday, August 21, 2021 at 5:12:26 AM UTC+1, sanjay...@gmail.com wrote:
> Hi,
>
> using Win 10 and Dolphin 7.1.20 (32 bit off course)
>
> Are there any known limitation when storing Objects serialized into a disk file, like as mentioned in the help example:
>
> S := FileStream write:'Test.STB' text: false.
> (STBOutFiler on: S) nextPut: X; S close.
>
> ... I was thinking of the long back Win32 4gb limitation in some cases if relevant.
>
> also is there a way to quickly switch between binary form and some sort of near textual form, of the files stored, just to verify what is being stored. Without disturbing much code
>
> Thanks
> Sanjay

Re: An known size limitation in Win 10 when storing object STB+FileStream

<30b74e3a-c1f8-4df7-ba87-a5923a0fe9a6n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=125&group=comp.lang.smalltalk.dolphin#125

  copy link   Newsgroups: comp.lang.smalltalk.dolphin
X-Received: by 2002:a37:2d04:: with SMTP id t4mr13833924qkh.160.1629554897020;
Sat, 21 Aug 2021 07:08:17 -0700 (PDT)
X-Received: by 2002:a05:6830:1da:: with SMTP id r26mr20419008ota.162.1629554896662;
Sat, 21 Aug 2021 07:08:16 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.smalltalk.dolphin
Date: Sat, 21 Aug 2021 07:08:16 -0700 (PDT)
In-Reply-To: <2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=171.76.114.65; posting-account=wc7UngoAAABlNyOTTL0vlOzP96a0IeHs
NNTP-Posting-Host: 171.76.114.65
References: <7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com> <2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <30b74e3a-c1f8-4df7-ba87-a5923a0fe9a6n@googlegroups.com>
Subject: Re: An known size limitation in Win 10 when storing object STB+FileStream
From: sanjay.minni@gmail.com (Sanjay Minni)
Injection-Date: Sat, 21 Aug 2021 14:08:17 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Sanjay Minni - Sat, 21 Aug 2021 14:08 UTC

Hi John,

is the 4gb size limitation still persisting with Windows 10.
Does anybody have experience with storing STB files larger than 4gb - how much has anybody gone upto.

regards
Sanjay

On Saturday, 21 August, 2021 at 5:35:20 pm UTC+5:30, john.a...@gmail.com wrote:
> Hi Sanjay - I'm not aware of any limits on STB file size beyond the OS file size limit you mention.
>
> Regarding your second question, STON can be used to serialize objects in a text-based format (STON is essentialy a superset of JSON). See the STON-Core package comment for more details.
>
> Regards,
>
> John Aspinall
> On Saturday, August 21, 2021 at 5:12:26 AM UTC+1, sanjay...@gmail.com wrote:
> > Hi,
> >
> > using Win 10 and Dolphin 7.1.20 (32 bit off course)
> >
> > Are there any known limitation when storing Objects serialized into a disk file, like as mentioned in the help example:
> >
> > S := FileStream write:'Test.STB' text: false.
> > (STBOutFiler on: S) nextPut: X; S close.
> >
> > ... I was thinking of the long back Win32 4gb limitation in some cases if relevant.
> >
> > also is there a way to quickly switch between binary form and some sort of near textual form, of the files stored, just to verify what is being stored. Without disturbing much code
> >
> > Thanks
> > Sanjay

Re: An known size limitation in Win 10 when storing object STB+FileStream

<29cb804a-4ce7-46cd-820f-08d7e2fe74e5n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=126&group=comp.lang.smalltalk.dolphin#126

  copy link   Newsgroups: comp.lang.smalltalk.dolphin
X-Received: by 2002:a37:9244:: with SMTP id u65mr13696486qkd.46.1629556474784;
Sat, 21 Aug 2021 07:34:34 -0700 (PDT)
X-Received: by 2002:a9d:d35:: with SMTP id 50mr20629046oti.22.1629556474415;
Sat, 21 Aug 2021 07:34:34 -0700 (PDT)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!usenet.pasdenom.info!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.smalltalk.dolphin
Date: Sat, 21 Aug 2021 07:34:34 -0700 (PDT)
In-Reply-To: <2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=171.76.114.65; posting-account=wc7UngoAAABlNyOTTL0vlOzP96a0IeHs
NNTP-Posting-Host: 171.76.114.65
References: <7186bff9-35f0-4457-87f1-4164bd86eab0n@googlegroups.com> <2fac48de-3381-4353-8427-b8321e03e05en@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <29cb804a-4ce7-46cd-820f-08d7e2fe74e5n@googlegroups.com>
Subject: Re: An known size limitation in Win 10 when storing object STB+FileStream
From: sanjay.minni@gmail.com (Sanjay Minni)
Injection-Date: Sat, 21 Aug 2021 14:34:34 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Sanjay Minni - Sat, 21 Aug 2021 14:34 UTC

Hi John,

Just wanted to recheck if there is any 4gb size limitation (Windows 10). (I really do not know if it was ever there earlier for STB+Filestream)
Does anybody have experience with storing STB files / individual objects larger than 4gb - how much has anybody gone upto.
This could be critical for my application.

regards
Sanjay

On Saturday, 21 August, 2021 at 5:35:20 pm UTC+5:30, john.a...@gmail.com wrote:
> Hi Sanjay - I'm not aware of any limits on STB file size beyond the OS file size limit you mention.
>
> Regarding your second question, STON can be used to serialize objects in a text-based format (STON is essentialy a superset of JSON). See the STON-Core package comment for more details.
>
> Regards,
>
> John Aspinall
> On Saturday, August 21, 2021 at 5:12:26 AM UTC+1, sanjay...@gmail.com wrote:
> > Hi,
> >
> > using Win 10 and Dolphin 7.1.20 (32 bit off course)
> >
> > Are there any known limitation when storing Objects serialized into a disk file, like as mentioned in the help example:
> >
> > S := FileStream write:'Test.STB' text: false.
> > (STBOutFiler on: S) nextPut: X; S close.
> >
> > ... I was thinking of the long back Win32 4gb limitation in some cases if relevant.
> >
> > also is there a way to quickly switch between binary form and some sort of near textual form, of the files stored, just to verify what is being stored. Without disturbing much code
> >
> > Thanks
> > Sanjay

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor