1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] The grass is always greener in the other field -->
<!--X-From-R13: "Wyln, Unzr Qbzznaqbf" <WylnNtnzrpbzznaqbf.pbz> -->
<!--X-Date: Thu, 16 Dec 1999 16:27:42 &#45;0800 -->
<!--X-Message-Id: 00245876900395#alternaterealitynet,com -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] The grass is always greener in the other field</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:Ilya#gamecommandos,com">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00622.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00624.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00622.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00628.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00623">Author</A>
&nbsp;|&nbsp;<A HREF="#00623">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00623">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] The grass is always greener in the other field</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: "<A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A>" &lt;<A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A>&gt;</LI>
<LI><em>Subject</em>: Re: [MUD-Dev] The grass is always greener in the other field</LI>
<LI><em>From</em>: "Ilya, Game Commandos" &lt;<A HREF="mailto:Ilya#gamecommandos,com">Ilya#gamecommandos,com</A>&gt;</LI>
<LI><em>Date</em>: Thu, 16 Dec 1999 16:27:01 -0800</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#kanga,nu</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Thu, 16 Dec 1999 15:55:14 -0800 (PST), Matthew Mihaly wrote:

))On Thu, 16 Dec 1999, Cynbe ru Taren wrote:
))
))&gt; 
))&gt; "quite impossible" is fightin' words, podnuh!
))&gt; 
))&gt; I'd guess careful analysis would show that 90% of the state stored
))&gt; could be aggregated and shared, assuming implementation sort of typical
))&gt; of the current server genre.
))&gt; 
))&gt; E.g., if some values frequently default to the same value, but may
))&gt; -sometimes- be changed, space can be saved by, instead of the typical
))&gt; strategy of using a structure field per object initialized to the
))&gt; default value (wastefully storing the default value many times),
))&gt; instead storing the default value once and using a hash table
))&gt; to record which objects have non-default values for the field.
))&gt; 
))&gt; Slightly slower, sure -- nothing buys you nothing in engineering.
))
))Well, I'm not entirely sure I understand what you are talking about, as
))I'm not much of a techie, but from my meager understanding, I still don't
))understand how knowing which objects have non-default values will help
))with the problem as I stated it. For instance, there are about 6000 vials
))in Achaea currently. When you buy one, it will last 250 half-months
))(that's about 130 rl days). So, you've got 6000 vials, with their decay
))counter set at between 1 and 250. How can you aggregate these, unless they
))have the same decay times, without losing the information specific to
))them? (I didn't use the example of weapons and armour, as presumably they
))fall into the 10% that your 90% excluded, as they have multiple stats that
))can and will likely be different for most instances of the armour or
))weapon).
))--matt
))

It just depends on how much information there is (to go with this example)
about each vial, and how much varies.  If the information about a vial includes 
its location, its contents, its decay counter, its weight, and (say) its color, and 
all of those could vary pretty dramatically, with several hundred different values 
for each of those data items, then it wouldn't do you any good to store a sort 
of generic vial and keep track only of the variations from the generic.

On the other hand, if there is a high degree of similarity in the data values 
representing these vials, then aggregation could work.  So let's say that of 
these 6000 vials, there are really only four colors, and five contents, and all 
have the same weight.  Twenty 'prototype' vials could then be stored, and then 
for each prototype a list of locations and decay counters (only) would need to 
be stored.  Twenty lists of 300, with half the data held constant in each list of 
300, this beats 6000 lists of one, with all data varying at will, so to speak.

It's more or less what the database people are referring to when they speak of 
data normalization (feel free to jump in to refine, you database people).

Only very good knowledge of the data can tell for sure if this will help or not.

--
  Ilya, Game Commandos     <A  HREF="http://www.gamecommandos.com">http://www.gamecommandos.com</A>     





_______________________________________________
MUD-Dev maillist  -  MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00622.html">RE: [MUD-Dev] The grass is always greener in the other field</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00624.html">Re: [MUD-Dev] Biosystems (was Fair/Unfair? Scenarios)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00622.html">RE: [MUD-Dev] The grass is always greener in the other field</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00628.html">Re: [MUD-Dev] The grass is always greener in the other field</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00623"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00623"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>Re: [MUD-Dev] The grass is always greener in the other field</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00613" HREF="msg00613.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Cynbe ru Taren <a href="mailto:cynbe#muq,org">cynbe#muq,org</a>, Thu 16 Dec 1999, 23:10 GMT
<UL>
<LI><strong><A NAME="00618" HREF="msg00618.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Thu 16 Dec 1999, 23:59 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00616" HREF="msg00616.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Bruce Mitchener, Jr. <a href="mailto:bruce#puremagic,com">bruce#puremagic,com</a>, Thu 16 Dec 1999, 23:35 GMT
</LI>
<LI><strong><A NAME="00622" HREF="msg00622.html">RE: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Fri 17 Dec 1999, 00:27 GMT
</LI>
<LI><strong><A NAME="00623" HREF="msg00623.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Ilya, Game Commandos <a href="mailto:Ilya#gamecommandos,com">Ilya#gamecommandos,com</a>, Fri 17 Dec 1999, 00:27 GMT
</LI>
<LI><strong><A NAME="00628" HREF="msg00628.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
cg <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Fri 17 Dec 1999, 01:01 GMT
</LI>
<LI><strong><A NAME="00626" HREF="msg00626.html">RE: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Fri 17 Dec 1999, 01:01 GMT
</LI>
<LI><strong><A NAME="00634" HREF="msg00634.html">Re: [MUD-Dev] The grass is always greener in the other field</A></strong>, 
cg <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Fri 17 Dec 1999, 04:04 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00510" HREF="msg00510.html">[MUD-Dev] (fwd) Re: Artificial Language for MUD programmers</A></strong>, 
claw <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Fri 26 Nov 1999, 19:06 GMT
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>